Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
matsantoro committed Apr 26, 2021
1 parent 9611208 commit de6c026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_graph_count.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ def test_no_override(self):

class TestDoesNotLeaveFiles(unittest.TestCase):
def test_no_added_files(self):
initial_file_list = Path("").glob("**")
initial_file_list = list(Path("").glob("**"))
biedge_count_per_dimension(np.ones((4, 4)))
final_file_list = Path("").glob("**")
final_file_list = list(Path("").glob("**"))
self.assertEqual(initial_file_list, final_file_list)


Expand Down

0 comments on commit de6c026

Please sign in to comment.