aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/test_page_iterator.py
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2019-02-19 16:07:44 -0500
committerGitHub <noreply@github.com>2019-02-19 16:07:44 -0500
commit355a4db4a597534a94deb1ff824b98eb901d0e68 (patch)
tree6d9c6c32f9bf14a1f4e586f490a751374fab3147 /tests/unit/test_page_iterator.py
parenta6253d941a3d09e46d8f9e54c20bc42a93c60975 (diff)
downloadpython-api-core-355a4db4a597534a94deb1ff824b98eb901d0e68.tar.gz
Fix new lint failure. (#7382)
F632 use ==/!= to compare str, bytes, and int literals.
Diffstat (limited to 'tests/unit/test_page_iterator.py')
-rw-r--r--tests/unit/test_page_iterator.py2
1 files changed, 1 insertions, 1 deletions
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 @@ class TestGRPCIterator(object):
method.assert_called_with(request)
assert method.call_count == 2
- assert request.page_token is "1"
+ assert request.page_token == "1"
class GAXPageIterator(object):