Skip to content

Commit 4160238

Browse files
committed
Correct some references to Python modules in tests
1 parent e432d34 commit 4160238

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
class TestIntegration(unittest.TestCase):
2525
"""
26-
Test suite for the combination of `pypuppetdb.Lexer`,
27-
`pypuppetdbquery.Parser`, and `pypuppetdb.Evaluator`.
26+
Test suite for the combination of `pypuppetdb.lexer.Lexer`,
27+
`pypuppetdbquery.parser.Parser`, and `pypuppetdb.evaluator.Evaluator`.
2828
"""
2929
def setUp(self):
3030
self.parser = Parser(

tests/test_lexer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
class TestLexer(unittest.TestCase):
2424
"""
25-
Test suite for `pypuppetdbquery.Lexer`.
25+
Test suite for `pypuppetdbquery.lexer.Lexer`.
2626
"""
2727
def setUp(self):
2828
self.lexer = Lexer(

0 commit comments

Comments
 (0)