diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-18 10:22:04 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-19 20:12:58 -0400 |
commit | ed854ad8e621f62b5f918ddcb23b0bc7d55a21e6 (patch) | |
tree | 08872856035e370d5f16906476b300ba1d3920fa /tests/texlive.scm | |
parent | 1b0a095a817b2743ad4a111edbb5e11b40a311a5 (diff) | |
download | guix-ed854ad8e621f62b5f918ddcb23b0bc7d55a21e6.tar.gz |
tests: Fix texlive->guix-package test.
The home page for the package had changed. * tests/texlive.scm ("texlive->guix-package"): Match the home-page and synopsis inexactly to avoid future similar breakages.
Diffstat (limited to 'tests/texlive.scm')
-rw-r--r-- | tests/texlive.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/texlive.scm b/tests/texlive.scm index c1bd50b75f..c3631861ce 100644 --- a/tests/texlive.scm +++ b/tests/texlive.scm @@ -191,9 +191,9 @@ completely compatible with Plain TeX.") 'texlive-knuth-lib 'texlive-plain 'texlive-tex)) - ('home-page "https://www.tug.org/texlive/") - ('synopsis "Plain TeX macros for Physicists") - ('description (? string? description)) + ('home-page (? string?)) + ('synopsis (? string?)) + ('description (? string?)) ('license 'lppl)) #true) (_ |