diff options
author | Christopher Baines <mail@cbaines.net> | 2020-01-05 11:17:56 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-01-05 12:01:06 +0000 |
commit | e070c200300f65fbdd55e141e2d18bbc4093a628 (patch) | |
tree | 733e0031146970d3e48b422957229795ee84e05c /tests | |
parent | ffcf937c6abc0aef0276b929a77219c19991b40c (diff) | |
download | data-service-e070c200300f65fbdd55e141e2d18bbc4093a628.tar data-service-e070c200300f65fbdd55e141e2d18bbc4093a628.tar.gz |
Make valid-systems quicker
In the future, it would be good to pull this from the database again, but in
some way which is really quick.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/model-derivation.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model-derivation.scm b/tests/model-derivation.scm index eca3768..e02ff50 100644 --- a/tests/model-derivation.scm +++ b/tests/model-derivation.scm @@ -9,7 +9,7 @@ "test-model-derivation" (lambda (conn) (test-equal "valid-systems" - '() + '("aarch64-linux" "armhf-linux" "i686-linux" "mips64el-linux" "x86_64-linux") (valid-systems conn)) (test-equal "count-derivations" |