diff options
author | Christopher Baines <mail@cbaines.net> | 2024-02-19 15:44:15 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-04-03 17:30:53 +0100 |
commit | c9cd16c630ccba655b93ff32fd9a99570b4f5373 (patch) | |
tree | 3ff7113554ae6a267b104a68369c35bf63325883 /tests/pack.scm | |
parent | c6cc9aeb87014cfb8f1eabb525e28ac633bf7af4 (diff) | |
download | guix-c9cd16c630ccba655b93ff32fd9a99570b4f5373.tar.gz |
store: database: Rename a couple of procedures.
These names should be more descriptive. * guix/store/database.scm (path-id): Rename to select-valid-path-id. (sqlite-register): Rename to register-valid-path. (register-items): Update accordingly. Change-Id: I6d4a14d4cde9d71ab34d6ffdbfbfde51b2c0e1db
Diffstat (limited to 'tests/pack.scm')
-rw-r--r-- | tests/pack.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pack.scm b/tests/pack.scm index 55445ea1e9..40897a5589 100644 --- a/tests/pack.scm +++ b/tests/pack.scm @@ -209,7 +209,7 @@ (and (every valid-file? '("α" "λ") '("alpha" "lambda")) - (integer? (path-id db #$tree))))))))))) + (integer? (valid-path-id db #$tree))))))))))) (built-derivations (list check)))) (unless store (test-skip 1)) |