(self)
| 78 | self.assertEqual(client1, client2) |
| 79 | |
| 80 | def test_proxy_with_kwargs(self): |
| 81 | env = EnvironmentVarGuard() |
| 82 | env.unset('KAGGLE_USER_SECRETS_TOKEN') |
| 83 | with env: |
| 84 | client = bigquery.Client( |
| 85 | default_query_job_config=bigquery.QueryJobConfig(maximum_bytes_billed=int(1e9))) |
| 86 | self._test_proxy(client) |
nothing calls this directly
no test coverage detected