diff options
author | Rob Savoye | 2010-11-29 19:12:03 -0700 |
---|---|---|
committer | Rob Savoye | 2010-11-29 19:12:03 -0700 |
commit | d3538cbcefec7e1d409442a97df093447c5e6268 (patch) | |
tree | ad4590d210440eb13eeb52a6bc95960fa58d2cac | |
parent | 98a91e0f2cb8ebdc89dd6ba24fd25911303249a7 (diff) | |
download | gnuradio-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.scm | 6 |
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) |