From 639e75908f291bd0f26fd281ea8c6fbd169c5dd5 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Tue, 19 Feb 2019 15:37:12 -0500 Subject: [PATCH] Fix new lint failure: F632 use ==/!= to compare str, bytes, and int literals. --- api_core/tests/unit/test_page_iterator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api_core/tests/unit/test_page_iterator.py b/api_core/tests/unit/test_page_iterator.py index f2845fb3a61e..6335001bcf41 100644 --- a/api_core/tests/unit/test_page_iterator.py +++ b/api_core/tests/unit/test_page_iterator.py @@ -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):