commit | 355a4db4a597534a94deb1ff824b98eb901d0e68 | [log] [tgz] |
---|---|---|
author | Tres Seaver <tseaver@palladion.com> | Tue Feb 19 16:07:44 2019 -0500 |
committer | GitHub <noreply@github.com> | Tue Feb 19 16:07:44 2019 -0500 |
tree | 6d9c6c32f9bf14a1f4e586f490a751374fab3147 | |
parent | a6253d941a3d09e46d8f9e54c20bc42a93c60975 [diff] |
Fix new lint failure. (#7382) F632 use ==/!= to compare str, bytes, and int literals.
diff --git a/tests/unit/test_page_iterator.py b/tests/unit/test_page_iterator.py index f2845fb..6335001 100644 --- a/tests/unit/test_page_iterator.py +++ b/tests/unit/test_page_iterator.py
@@ -514,7 +514,7 @@ method.assert_called_with(request) assert method.call_count == 2 - assert request.page_token is "1" + assert request.page_token == "1" class GAXPageIterator(object):