Skip to content

Commit

Permalink
rename test classes to start with Test so pytest finds them (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
amueller authored Nov 19, 2020
1 parent 5c262ed commit b2e16cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
NUM_KEYS = 10000
RANGE = 100 * NUM_KEYS

class StackTest:
class TestStack:

def test_stack(self):
stack = Stack()
Expand All @@ -26,7 +26,7 @@ def test_stack(self):
assert True


class SortedBinaryTreeTest:
class TestSortedBinaryTree:

def setup_method(self, method):
self.random_sorted_binary_tree = SortedBinaryTree()
Expand Down

0 comments on commit b2e16cb

Please sign in to comment.