Replace dashes with underscore in stream name integration test

This commit is contained in:
Brendan Reilly
2021-10-29 11:40:35 -04:00
parent 3f876ae5c7
commit e7016b25ae

View File

@@ -26,7 +26,7 @@ def test_rest_module_build(clone_and_start_build, mbs, koji, pkg_util):
assert build.get("scmurl").replace("?", "") == giturl
assert build.get("state_name") == "build"
assert build.get("name") == repo.module_name
assert build.get("stream") == repo.branch
assert build.get("stream") == repo.branch.replace("-", "_")
assert not build.get("scratch")
assert build.get("tasks")