From 3c7c631b0759f81c4bd56c9854b1e927bb790d8e Mon Sep 17 00:00:00 2001 From: chrisjonesBSU Date: Fri, 8 Sep 2023 10:51:33 -0600 Subject: [PATCH] fix unit test name --- gmso/tests/test_topology.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gmso/tests/test_topology.py b/gmso/tests/test_topology.py index 98cb3e1a7..6aada92f3 100644 --- a/gmso/tests/test_topology.py +++ b/gmso/tests/test_topology.py @@ -89,7 +89,7 @@ def test_remove_connection(self): top.remove_connection(connect) assert top.n_connections == 0 - def test_remove_connection(self): + def test_remove_connection_not_in_top(self): top = Topology() atom1 = Atom(name="atom1") atom2 = Atom(name="atom2")