Skip to content
Snippets Groups Projects
Commit 9bfd1794 authored by James Johnson's avatar James Johnson
Browse files

Missing argument in test

parent 968f623f
No related branches found
No related tags found
1 merge request!152Removed __traits_version__ from json files
This commit is part of merge request !152. Comments created here will be created in the context of that merge request.
...@@ -101,5 +101,5 @@ class TestWorkflowWriter(unittest.TestCase): ...@@ -101,5 +101,5 @@ class TestWorkflowWriter(unittest.TestCase):
'K2': ['V1', 'V2', {'K1': 'V1', 'K2': 'V2', }], 'K2': ['V1', 'V2', {'K1': 'V1', 'K2': 'V2', }],
'K4': ('V1', {},)} 'K4': ('V1', {},)}
test_result_dictionary = pop_recursive(test_dictionary, ) test_result_dictionary = pop_recursive(test_dictionary, 'K3')
self.assertEqual(test_result_dictionary, result_dictionary) self.assertEqual(test_result_dictionary, result_dictionary)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment