Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove six dependency #98

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 0 additions & 5 deletions tests/unit/v1/test_query.py
Expand Up @@ -16,16 +16,11 @@
import unittest

import mock
import six

from tests.unit.v1.test_base_query import _make_credentials, _make_query_response


class TestQuery(unittest.TestCase):

if six.PY2:
assertRaisesRegex = unittest.TestCase.assertRaisesRegexp

@staticmethod
def _get_target_class():
from google.cloud.firestore_v1.query import Query
Expand Down