Skip to content

Commit

Permalink
fix: fix failing unit test (#607)
Browse files Browse the repository at this point in the history
Fixes #606
  • Loading branch information
Chris Rossi authored Feb 18, 2021
1 parent bc8dc4a commit 5d3927e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/unit/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2146,9 +2146,8 @@ def test__from_base_type(self):
prop = model.PickleProperty(name="pkl")
assert prop._from_base_type(self.PICKLED) == self.UNPICKLED

# @pytest.mark.usefixtures("in_context")
@pytest.mark.usefixtures("client_context")
def test__legacy_from_base_type(self, client_context):
@pytest.mark.usefixtures("in_context")
def test__legacy_from_base_type(self):
# GAE NDB stores pickled properties as bytes and with GAE NDB structures.
# Validate we can unpickle to a Cloud NDB structure.
# See https://github.com/googleapis/python-ndb/issues/587
Expand Down

0 comments on commit 5d3927e

Please sign in to comment.