From fce1a51729b95cb4daddba998a16a6e27ac2cdca Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sat, 19 May 2001 01:23:23 +0000 Subject: [PATCH] Updated test for new micro version stuff. --- test-suite/tests/version.test | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test-suite/tests/version.test b/test-suite/tests/version.test index 0f9531c2b..3bf6bb6fe 100644 --- a/test-suite/tests/version.test +++ b/test-suite/tests/version.test @@ -1,4 +1,4 @@ -;;;; chars.test --- test suite for Guile's char functions -*- scheme -*- +;;;; versions.test --- test suite for Guile's version functions -*- scheme -*- ;;;; Greg J. Badros ;;;; ;;;; Copyright (C) 2000 Free Software Foundation, Inc. @@ -23,4 +23,8 @@ (pass-if "version reporting works" (and (string? (major-version)) (string? (minor-version)) - (string=? (version) (string-append (major-version) "." (minor-version))))) + (string? (micro-version)) + (string=? (version) + (string-append (major-version) "." + (minor-version) "." + (micro-version))))) -- 2.20.1