diff options
Diffstat (limited to 'tests/guix-build.sh')
-rw-r--r-- | tests/guix-build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/guix-build.sh b/tests/guix-build.sh index ae75bcfab0..6d4f97019a 100644 --- a/tests/guix-build.sh +++ b/tests/guix-build.sh @@ -171,6 +171,7 @@ then false; else true; fi # Parsing package names and versions. guix build -n time # PASS guix build -n time@1.7 # PASS, version found +guix build -n time-1.7 # PASS, deprecated version syntax if guix build -n time@3.2; # FAIL, version not found then false; else true; fi if guix build -n something-that-will-never-exist; # FAIL |