Skip to content

Commit

Permalink
Update type test to satisfy new flake8 (#3433)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom authored Aug 1, 2023
1 parent 3ef2a0f commit 54aeb18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def test_saturate():
def test_to_utf8(s, exp):
"""Test the to_utf8 function: object to string"""
u = utils.to_utf8(s)
assert type(u) == str
assert isinstance(u, str)
assert u == exp


Expand Down

0 comments on commit 54aeb18

Please sign in to comment.