Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
598ca88
feat: add grpc transcoding + tests
yon-mg Feb 9, 2021
a956abb
🦉 Updates from OwlBot
gcf-owl-bot[bot] Aug 25, 2021
1ca321a
chore: tweak for clarity / idiomatic usage
tseaver Aug 25, 2021
f8725d9
chore: attempt to appease Sphinx
tseaver Aug 25, 2021
79f561f
feat: add grpc transcoding + tests
yon-mg Feb 9, 2021
6a9e8c0
Merge changes.
yihjenku Sep 2, 2021
6b6dd7b
Merge changes.
yihjenku Sep 2, 2021
01df2c6
Merge branch 'transcode-takeover' of https://github.com/yihjenku/pyth…
yihjenku Sep 2, 2021
5a04dcd
Merge branch 'main' into transcode-takeover
yihjenku Sep 2, 2021
1b827a2
Merge branch 'main' into transcode-takeover
yihjenku Sep 7, 2021
51661d3
Add functions to properly handle subfields
yihjenku Sep 9, 2021
2dfbc28
Merge branch 'transcode-takeover' of https://github.com/yihjenku/pyth…
yihjenku Sep 9, 2021
12a4436
Add unit tests for get_field and delete_field.
yihjenku Sep 9, 2021
28f587d
Add function docstrings and incorporate correct native dict functions.
yihjenku Sep 14, 2021
928e3fb
Add function docstrings and incorporate correct native dict functions.
yihjenku Sep 14, 2021
6d61e4c
Merge branch 'transcode-takeover' of https://github.com/yihjenku/pyth…
yihjenku Sep 15, 2021
97c5697
Increase code coverage
yihjenku Sep 15, 2021
1450b91
Increase code coverage
yihjenku Sep 15, 2021
4c157a9
Increase code coverage
yihjenku Sep 15, 2021
c99e7bb
Reformat files
yihjenku Sep 15, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Increase code coverage
  • Loading branch information
yihjenku committed Sep 15, 2021
commit 1450b91dc0a47bad739b9f722839ad45819d11d4
2 changes: 1 addition & 1 deletion tests/unit/test_path_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def test_get_field(request_obj, field, expected_result):
['string', 'field,', 'string'],
],
)
def test_get_field(request_obj, field, expected_result):
def test_delete_field(request_obj, field, expected_result):
path_template.delete_field(request_obj, field)
assert request_obj == expected_result

Expand Down