From b159eaaa610081245a8f99f65f801d3af776355c Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Sat, 28 Jan 2023 12:22:54 -0500 Subject: [PATCH] Fix test --- nodeodm/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodeodm/tests.py b/nodeodm/tests.py index 758ae622..6a538409 100644 --- a/nodeodm/tests.py +++ b/nodeodm/tests.py @@ -146,7 +146,7 @@ class TestClientApi(TestCase): # Verify that options have been updated after restarting the task task_info = api.get_task(uuid).info() - self.assertTrue(len(task_info.options) == 3) # pc-ept, cog, gltf have been added + self.assertEqual(len(task_info.options), 4) # pc-ept, cog, gltf have been added self.assertTrue(task_info.options[0]['name'] == 'mesh-size') self.assertTrue(task_info.options[0]['value'] == 12345)