From 2cb5b3a1e7b1385dbf2c831d9494eff05dbaaef4 Mon Sep 17 00:00:00 2001 From: Orion Eiger Date: Tue, 13 Aug 2024 13:42:24 -0700 Subject: [PATCH] Fix typo --- tests/test_cliCmdReport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cliCmdReport.py b/tests/test_cliCmdReport.py index f16ddc09..87f35a52 100644 --- a/tests/test_cliCmdReport.py +++ b/tests/test_cliCmdReport.py @@ -182,7 +182,7 @@ def test_report(self): input="no", ) - self.assertEqual(result.exit_code, 0, clickResultMsg(result_v2_full)) + self.assertEqual(result_v2_full.exit_code, 0, clickResultMsg(result_v2_full)) # Check the "brief" output that prints to the terminal first: # Check that we get string output self.assertIsInstance(result_v2_full.stdout, str)