Skip to content

Commit

Permalink
MNT: Fix reversed ("yoda") condition in test
Browse files Browse the repository at this point in the history
Found by flake8-simplify
  • Loading branch information
dopplershift committed Dec 20, 2020
1 parent aedb7fa commit 9932465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/io/test_gini.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def test_unidata_composite():
assert datetime(2018, 3, 9, 22, 25) == f.prod_desc.datetime

# Check data value
assert 66 == f.data[2160, 2130]
assert f.data[2160, 2130] == 66


def test_percent_normal():
Expand Down

0 comments on commit 9932465

Please sign in to comment.