Skip to content

Commit

Permalink
Ruff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bjmorgan committed Nov 3, 2023
1 parent 37540f5 commit eb6113c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_vasprun.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_parse_varray_parses_type_equals_float(self):
expected_data = [[0.1, 0.2, 0.3], [0.4, 0.5, 0.6]]
self.assertEqual(parse_varray(elem), expected_data)

def test_parse_varray_parses_type_equals_float(self):
def test_parse_varray_parses_type_equals_int(self):
elem = etree.Element("varray")
elem.set("type", "int")
v1 = etree.SubElement(elem, "v")
Expand Down

0 comments on commit eb6113c

Please sign in to comment.