Skip to content

Commit

Permalink
[python]Remove non-namespace "All non-currency" fom namespace test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jralls committed Mar 25, 2022
1 parent 109efe6 commit 7d94ade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/python/tests/test_commodity.py
Expand Up @@ -21,12 +21,12 @@ def test_namespaces(self):
#print(self.table.__class__)
namespace_names = self.table.get_namespaces()
#print(namespace_names)
self.assertEqual(namespace_names, ['All non-currency', 'template', 'CURRENCY'])
self.assertEqual(namespace_names, ['template', 'CURRENCY'])

def test_namespaces_list(self):
namespaces = self.table.get_namespaces_list()
namespace_names = [ns.get_name() for ns in namespaces]
self.assertEqual(namespace_names, ['All non-currency', 'template', 'CURRENCY'])
self.assertEqual(namespace_names, ['template', 'CURRENCY'])

if __name__ == '__main__':
main()

0 comments on commit 7d94ade

Please sign in to comment.