We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495818b commit 619b50bCopy full SHA for 619b50b
tests/json_front_tests/test_json_class.py
@@ -41,12 +41,12 @@ def test_set_inputs(self):
41
self.assertEqual(self.json_class.inputs, ctf_input)
42
43
def test_set_outputs(self):
44
- ctf_input = Output("test_output", float)
45
- self.assertEqual(self.json_class.inputs, ctf_input)
+ ctf_output = Output("test_output", float)
+ self.assertEqual(self.json_class.outputs, ctf_output)
46
47
def test_set_metas(self):
48
- ctf_input = Input("test_meta", float, populate_example)
49
+ ctf_meta = Input("test_meta", float, populate_example)
+ self.assertEqual(self.json_class.metas, ctf_meta)
50
51
def tearDown(self) -> None:
52
remove_temp_dir_if_existent()
0 commit comments