From b4828dcf9f683da43bd82425b784fb1719d6dabc Mon Sep 17 00:00:00 2001 From: softwareengineerprogrammer <4056124+softwareengineerprogrammer@users.noreply.github.com> Date: Tue, 15 Oct 2024 11:13:40 -0700 Subject: [PATCH] Remove unnecessary disabled test that was distractingly marked with 'FIXME WIP' --- tests/hip_ra_x_tests/test_hip_ra_x.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tests/hip_ra_x_tests/test_hip_ra_x.py b/tests/hip_ra_x_tests/test_hip_ra_x.py index e3f0e767..c3120f0c 100644 --- a/tests/hip_ra_x_tests/test_hip_ra_x.py +++ b/tests/hip_ra_x_tests/test_hip_ra_x.py @@ -167,20 +167,6 @@ def test_updates_output_parameter_units(self): param: OutputParameter = hip_ra.OutputParameterDict[key] assert param.CurrentUnits == param.PreferredUnits - @unittest.skip('FIXME WIP') - def test_aligns_space_between_value_and_units(self): - """ - Assert that the space between value and units is aligned to the same column for each line in the output file - """ - - hip_ra = self._new_hip_ra_test_instance() - hip_ra.PrintOutputs() - - with open('HIP.out') as f: - content = f.readlines() - for line in content: - assert line.count(' ') == 3 - @unittest.skip(reason='FIXME: Race condition if tests are run in parallel') def test_raises_permission_error(self): """Raises a PermissionError if there is no permission to write to the output file"""