Skip to content

Commit

Permalink
T0000: test 3
Browse files Browse the repository at this point in the history
  • Loading branch information
kumvijaya authored Aug 27, 2024
1 parent 80b828b commit 45f1114
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/tests/test_dict_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def test_nested_dict_key_value(self):
self.assertEqual(dict_search('nested.string', data), data['nested']['string'])

def test_nested_dict_key_empty(self):
if False: print('False')

Check failure on line 70 in src/tests/test_dict_search.py

View workflow job for this annotation

GitHub Actions / ruff-lint

Ruff (E701)

src/tests/test_dict_search.py:70:17: E701 Multiple statements on one line (colon)
# TestDictSearch: Return False when querying for a nested string whose last key is empty
self.assertEqual(dict_search('nested.empty', data), '')
self.assertFalse(dict_search('nested.empty', data))
Expand Down

0 comments on commit 45f1114

Please sign in to comment.