forked from googleapis/python-ndb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix docstring typos (found via codespell) (googleapis#724)
``` codespell --version 2.1.0 ```
- Loading branch information
Showing
6 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1484,9 +1484,9 @@ class SomeKind(ndb.Model): | |
key = entity.put() | ||
dispose_of(key._key) | ||
|
||
retreived = key.get() | ||
assert retreived.user.email() == "[email protected]" | ||
assert retreived.user.auth_domain() == "gmail.com" | ||
retrieved = key.get() | ||
assert retrieved.user.email() == "[email protected]" | ||
assert retrieved.user.auth_domain() == "gmail.com" | ||
|
||
|
||
@pytest.mark.usefixtures("client_context") | ||
|
@@ -1508,9 +1508,9 @@ def user_id(self): | |
key = entity.put() | ||
dispose_of(key._key) | ||
|
||
retreived = key.get() | ||
assert retreived.user.email() == "[email protected]" | ||
assert retreived.user.auth_domain() == "gmail.com" | ||
retrieved = key.get() | ||
assert retrieved.user.email() == "[email protected]" | ||
assert retrieved.user.auth_domain() == "gmail.com" | ||
|
||
|
||
@pytest.mark.usefixtures("client_context") | ||
|
@@ -1527,8 +1527,8 @@ class SomeKind(ndb.Model): | |
key = entity.put() | ||
dispose_of(key._key) | ||
|
||
retreived = key.get() | ||
assert retreived.foo == ["", ""] | ||
retrieved = key.get() | ||
assert retrieved.foo == ["", ""] | ||
|
||
|
||
@pytest.mark.skipif(not USE_REDIS_CACHE, reason="Redis is not configured") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters