Skip to content

Commit

Permalink
use imported symbol ldap.schema.split_tokens() (without sub-module name)
Browse files Browse the repository at this point in the history
  • Loading branch information
stroeder committed Feb 18, 2017
1 parent 99604c4 commit ff314a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/t_ldap_schema_tokenizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class TestSplitTokens(unittest.TestCase):

def _run_split_tokens_tests(self, test_cases):
for test_value, test_result in test_cases:
token_list = ldap.schema.tokenizer.split_tokens(test_value, None)
token_list = ldap.schema.split_tokens(test_value, None)
self.assertEqual(token_list, test_result)

def test_basic(self):
Expand Down

0 comments on commit ff314a9

Please sign in to comment.