summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Savoye2010-11-29 19:12:03 -0700
committerRob Savoye2010-11-29 19:12:03 -0700
commitd3538cbcefec7e1d409442a97df093447c5e6268 (patch)
treead4590d210440eb13eeb52a6bc95960fa58d2cac
parent98a91e0f2cb8ebdc89dd6ba24fd25911303249a7 (diff)
downloadgnuradio-d3538cbcefec7e1d409442a97df093447c5e6268.tar.gz
gnuradio-d3538cbcefec7e1d409442a97df093447c5e6268.tar.bz2
gnuradio-d3538cbcefec7e1d409442a97df093447c5e6268.zip
fix xyzzy-search-load-path test case, it was incorrect
-rw-r--r--gr-run-waveform/guile/simple.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-run-waveform/guile/simple.scm b/gr-run-waveform/guile/simple.scm
index d28bfc1cd..ae8ef9b60 100644
--- a/gr-run-waveform/guile/simple.scm
+++ b/gr-run-waveform/guile/simple.scm
@@ -47,9 +47,9 @@ path-with-xyzzy
(define result9 (xyzzy-search-load-path filename))
(if (boolean? result9)
(display "FAILED: xyzzy-search-load-path from guile\n")
- (if (string=? result9 expected)
- (display "FAILED: xyzzy-search-load-path from guile\n")
- (display "PASSED: xyzzy-search-load-path from guile\n")))
+ (if (string=? result9 result1)
+ (display "PASSES: xyzzy-search-load-path from guile\n")
+ (display "FAILED: xyzzy-search-load-path from guile\n")))
(define result10 (xyzzy-search-load-path expected))
(if (boolean? result9)