Skip to content

Commit fc982c8

Browse files
authored
build(deps): bump libmozdata from 0.1.79 to 0.1.86 in /bot (#1777)
Bumps [libmozdata](https://github.com/mozilla/libmozdata) from 0.1.79 to 0.1.86. - [Release notes](https://github.com/mozilla/libmozdata/releases) - [Commits](mozilla/[email protected]) --- updated-dependencies: - dependency-name: libmozdata dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a0dbbf0 commit fc982c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bot/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-e ../tools #egg=code-coverage-tools
22
google-cloud-storage==2.7.0
3-
libmozdata==0.1.79
3+
libmozdata==0.1.86
44
pytoml==0.1.21
55
pyyaml==6.0
66
tenacity==8.2.2

bot/tests/test_phabricator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def test_simple(mock_secrets, mock_phabricator, fake_hg_repo):
7272
call = responses.calls[-3]
7373
assert call.request.url == "http://phabricator.test/api/harbormaster.sendmessage"
7474
params = json.loads(urllib.parse.parse_qs(call.request.body)["params"][0])
75-
assert params["buildTargetPHID"] == "PHID-HMBT-test"
75+
assert params["receiver"] == "PHID-HMBT-test"
7676
assert params["type"] == "pass"
7777
assert params["unit"] == [
7878
{
@@ -94,7 +94,7 @@ def test_simple(mock_secrets, mock_phabricator, fake_hg_repo):
9494
call = responses.calls[-1]
9595
assert call.request.url == "http://phabricator.test/api/harbormaster.sendmessage"
9696
params = json.loads(urllib.parse.parse_qs(call.request.body)["params"][0])
97-
assert params["buildTargetPHID"] == "PHID-HMBT-test-lint"
97+
assert params["receiver"] == "PHID-HMBT-test-lint"
9898
assert params["type"] == "pass"
9999
assert params["unit"] == []
100100
assert params["lint"] == []

0 commit comments

Comments
 (0)