We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a9fc1d commit 9ac79fbCopy full SHA for 9ac79fb
tests/test_unit_test_discovery.py
@@ -729,6 +729,9 @@ class Graph:
729
def __init__(self, vertices: int):
730
self.vertices=vertices
731
732
+ def dummy_fn(self):
733
+ return 1
734
+
735
def topologicalSort(self):
736
return self.vertices
737
@@ -746,6 +749,7 @@ def g(self):
746
749
return Graph(6)
747
750
748
751
def test_topological_sort(g):
752
+ assert g.dummy_fn() == 1
753
assert g.topologicalSort() == 6
754
"""
755
test_file_path.write_text(test_file_content)
0 commit comments