build: Fix unittest TestAuthWithGoogleAuth::test_with_scopes_scoped (#1199)

Fixes #1198  🦕
diff --git a/tests/test__auth.py b/tests/test__auth.py
index 9c4ea65..6347e42 100644
--- a/tests/test__auth.py
+++ b/tests/test__auth.py
@@ -89,7 +89,7 @@
 
         self.assertNotEqual(credentials, returned)
         self.assertEqual(returned, credentials.with_scopes.return_value)
-        credentials.with_scopes.assert_called_once_with(mock.sentinel.scopes)
+        credentials.with_scopes.assert_called_once_with(mock.sentinel.scopes, default_scopes=None)
 
     def test_authorized_http(self):
         credentials = mock.Mock(spec=google.auth.credentials.Credentials)