Skip to content

Commit

Permalink
revert ruff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenworsley committed Sep 25, 2024
1 parent 59e3f10 commit 3fccd63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cf_units/tests/unit/test__udunits2.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ def test_parse(self):
assert unit is not None

def test_parse_latin1(self):
angstrom = _ud.parse(self.system, b"\xe5ngstr\xf6m", _ud.UT_LATIN1)
angstrom = _ud.parse(self.system, b"\xe5ngstr\xF6m", _ud.UT_LATIN1)

assert angstrom is not None

def test_parse_ISO_8859_1(self):
angstrom = _ud.parse(self.system, b"\xe5ngstr\xf6m", _ud.UT_ISO_8859_1)
angstrom = _ud.parse(self.system, b"\xe5ngstr\xF6m", _ud.UT_ISO_8859_1)

assert angstrom is not None

Expand Down

0 comments on commit 3fccd63

Please sign in to comment.