diff options
| author | Martin Schitter <ms@mur.at> | 2025-11-04 04:00:48 +0000 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-11-15 15:53:15 +0900 |
| commit | 944c20e171f98837c75820f50e6b98ad994ac375 (patch) | |
| tree | ddb6e24842b7a60898c1bb5181b4243235fd2600 /tests | |
| parent | 6c6139bce074551030b4d394930c53266095d632 (diff) | |
tests: style: Fix insufficient number of lines read.
* tests/style.scm ("url-fetch->git-fetch, preserved field"):
The 9th line of origin, where the patches field is located,
was never read. (broken test since a1b0fde434)
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/style.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/style.scm b/tests/style.scm index 3b74fa60bd..09e577677d 100644 --- a/tests/style.scm +++ b/tests/style.scm @@ -655,7 +655,7 @@ "https://github.com/foo/bar")) (load file) (and=> (read-package-field - (@ (my-packages-1) my-coreutils-1) 'source 8) + (@ (my-packages-1) my-coreutils-1) 'source 9) (cut string-contains <> "patches"))))))) "1")) |
