mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-25 00:18:22 -04:00
[packages] Be more explicit in test failures, fix test data
This commit is contained in:
parent
474aaf7603
commit
61e0d538e9
2 changed files with 3 additions and 3 deletions
|
@ -6,6 +6,6 @@ operations: []
|
|||
|
||||
pacman:
|
||||
num_retries: 4
|
||||
disable_timeout: yes
|
||||
disable_download_timeout: yes
|
||||
needed_only: true
|
||||
|
||||
|
|
|
@ -32,5 +32,5 @@ libcalamares.utils.warning("Expecting {!s} retry={!s} timeout={!s} needed={!s}".
|
|||
libcalamares.job = Job(filename)
|
||||
p = main.PMPacman()
|
||||
assert p.pacman_num_retries == retry, "{!r} vs {!r}".format(p.pacman_num_retries, retry)
|
||||
assert p.pacman_disable_timeout == timeout
|
||||
assert p.pacman_needed_only == needed
|
||||
assert p.pacman_disable_timeout == timeout, "{!r} vs {!r}".format(p.pacman_disable_timeout, timeout)
|
||||
assert p.pacman_needed_only == needed, "{!r} vs {!r}".format(p.pacman_needed_only, needed)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue