summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2020-10-21 09:18:50 +0200
committerGitHub <noreply@github.com>2020-10-21 09:18:50 +0200
commitbed929e7a91d66c0be37d81351d8fb290a26e8cf (patch)
tree2f5cf971a67c0c86256063678923651fe7a70cb0 /lib
parenta5faf7d27a3ef1afca28e5d2348130f580be898d (diff)
downloadspack-bed929e7a91d66c0be37d81351d8fb290a26e8cf.tar.gz
spack-bed929e7a91d66c0be37d81351d8fb290a26e8cf.tar.bz2
spack-bed929e7a91d66c0be37d81351d8fb290a26e8cf.tar.xz
spack-bed929e7a91d66c0be37d81351d8fb290a26e8cf.zip
Make url_fetch test independent of locale settings (#19390)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/test/url_fetch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/test/url_fetch.py b/lib/spack/spack/test/url_fetch.py
index 8a9a175a37..37b4cdc214 100644
--- a/lib/spack/spack/test/url_fetch.py
+++ b/lib/spack/spack/test/url_fetch.py
@@ -191,7 +191,7 @@ def test_url_with_status_bar(tmpdir, mock_archive, monkeypatch, capfd):
stage.fetch()
status = capfd.readouterr()[1]
- assert '##### 100.0%' in status
+ assert '##### 100' in status
def test_url_extra_fetch(tmpdir, mock_archive):