guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, master, updated. release_1-9-10-30-g45


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-10-30-g4597cd2
Date: Mon, 19 Apr 2010 10:29:07 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=4597cd2027876cd857bf5e4a8a86e308296d9d2a

The branch, master has been updated
       via  4597cd2027876cd857bf5e4a8a86e308296d9d2a (commit)
      from  3fc7e2c12370f4c6386dafe127640f1ef1c6d76b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4597cd2027876cd857bf5e4a8a86e308296d9d2a
Author: Andy Wingo <address@hidden>
Date:   Mon Apr 19 12:05:27 2010 +0200

    use procedure-minimum-arity in tests
    
    * test-suite/tests/procprop.test ("procedure-arity"): Fix tests to use
      procedure-minimum-arity.

-----------------------------------------------------------------------

Summary of changes:
 test-suite/tests/procprop.test |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/test-suite/tests/procprop.test b/test-suite/tests/procprop.test
index c009f88..3998a62 100644
--- a/test-suite/tests/procprop.test
+++ b/test-suite/tests/procprop.test
@@ -31,25 +31,25 @@
 
 (with-test-prefix "procedure-arity"
   (pass-if "simple subr"
-    (equal? (procedure-property display 'arity)
+    (equal? (procedure-minimum-arity display)
             '(1 1 #f)))
 
   (pass-if "gsubr"
-    (equal? (procedure-property hashq-ref 'arity)
+    (equal? (procedure-minimum-arity hashq-ref)
             '(2 1 #f)))
 
   (pass-if "port-closed?"
-    (equal? (procedure-property port-closed? 'arity)
+    (equal? (procedure-minimum-arity port-closed?)
             '(1 0 #f)))
 
   (pass-if "apply"
-    (equal? (procedure-property apply 'arity)
+    (equal? (procedure-minimum-arity apply)
             '(1 0 #t)))
 
   (pass-if "cons*"
-    (equal? (procedure-property cons* 'arity)
+    (equal? (procedure-minimum-arity cons*)
             '(1 0 #t)))
 
   (pass-if "list"
-    (equal? (procedure-property list 'arity)
+    (equal? (procedure-minimum-arity list)
             '(0 0 #t))))


hooks/post-receive
-- 
GNU Guile




reply via email to

[Prev in Thread] Current Thread [Next in Thread]