Skip to content

Commit

Permalink
fix test_concepts.py not run
Browse files Browse the repository at this point in the history
  • Loading branch information
korepwx committed Apr 15, 2018
1 parent 2bc46cb commit e9f73c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/utils/test_concepts.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self):

class NoReentrantContextTestCase(unittest.TestCase):

def text_context(self):
def test_everything(self):
ctx = _ContextA()

self.assertFalse(ctx._is_entered)
Expand Down Expand Up @@ -71,7 +71,7 @@ def text_context(self):

class OneTimeContextTestCase(unittest.TestCase):

def text_context(self):
def test_everything(self):
ctx = _ContextB()

self.assertFalse(ctx._is_entered)
Expand Down

0 comments on commit e9f73c2

Please sign in to comment.