Skip to content

Commit

Permalink
Remove unnecessary disabled test that was distractingly marked with '…
Browse files Browse the repository at this point in the history
…FIXME WIP'
  • Loading branch information
softwareengineerprogrammer committed Oct 15, 2024
1 parent 53bb796 commit b4828dc
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tests/hip_ra_x_tests/test_hip_ra_x.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down

0 comments on commit b4828dc

Please sign in to comment.