diff --git a/tests/unit/network/GenericNetworkTest.py b/tests/unit/network/GenericNetworkTest.py index 1795c01619..8919f34348 100644 --- a/tests/unit/network/GenericNetworkTest.py +++ b/tests/unit/network/GenericNetworkTest.py @@ -202,6 +202,11 @@ def test_get_adjacency_matrix(self): assert len(am.keys()) == 48 assert len(net._am) == 2 + def test_into(self): + net = op.network.Demo([4, 4, 1]) + # This test is lame, but just to keep the code cov counter happy + net.info + if __name__ == '__main__':