Skip to content

Commit

Permalink
Fix new lint failure. (#7382)
Browse files Browse the repository at this point in the history
F632 use ==/!= to compare str, bytes, and int literals.
  • Loading branch information
tseaver authored Feb 19, 2019
1 parent e2e36b2 commit 5222c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api_core/tests/unit/test_page_iterator.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def test_iterate_with_max_results(self):

method.assert_called_with(request)
assert method.call_count == 2
assert request.page_token is "1"
assert request.page_token == "1"


class GAXPageIterator(object):
Expand Down

0 comments on commit 5222c62

Please sign in to comment.