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 226254f commit 8365f04Copy full SHA for 8365f04
tests/json_front_tests/test_json_class.py
@@ -62,9 +62,9 @@ def test_set_metas(self):
62
63
def test_argparse(self):
64
args = self.json_class.get_args(["--data_path=data.csv", "--dag_path=dag.dot", "--json_path=tests.json"])
65
- self.assertTrue(args.data_path)
66
- self.assertTrue(args.dag_path)
67
- self.assertTrue(args.json_path)
+ self.assertEqual(args.data_path, "data.csv")
+ self.assertEqual(args.dag_path, "dag.dot")
+ self.assertEqual(args.json_path, "tests.json")
68
69
def test_setup_modelling_scenario(self):
70
self.json_class.setup()
0 commit comments