builder: use 'server' instead of 'url' for config

Mostly to be more in line with how things are called in all other
koji configuration files.
This commit is contained in:
Christian Kellner 2020-09-26 10:55:52 +02:00 committed by Tom Gundersen
parent 1b8277c078
commit 7ecf7447e4
3 changed files with 8 additions and 8 deletions

View file

@ -267,12 +267,12 @@ class TestBuilderPlugin(PluginTest):
cfg = configparser.ConfigParser()
cfg["composer"] = {
"url": composer_url,
"server": composer_url,
"ssl_cert": ssl_cert,
"ssl_verify": ssl_verify
}
cfg["koji"] = {
"url": koji_url
"server": koji_url
}
cfgfile = os.path.abspath(os.path.join(tmp, "ko.cfg"))