From: Stelian Ionescu Date: Thu, 24 Jan 2013 21:49:34 +0000 (+0100) Subject: Don't signal a warning when the old TEST macro is used X-Git-Url: http://repo.macrolet.net/gitweb/?p=fiveam.git;a=commitdiff_plain;h=34e83d23a46d52eaa53e566439d19c6529ae28e0 Don't signal a warning when the old TEST macro is used --- diff --git a/src/test.lisp b/src/test.lisp index f9377cf..982c176 100644 --- a/src/test.lisp +++ b/src/test.lisp @@ -57,8 +57,6 @@ depending on another. FIXTURE specifies a fixture to wrap the body in. If PROFILE is T profiling information will be collected as well." - (simple-style-warning "~A is OBSOLETE! Use ~A instead." - 'test 'def-test) (destructuring-bind (name &rest args) (ensure-list name) `(def-test ,name (,@args) ,@body)))