From 635e3ef6ddeb2972cd942e00aee7a31ffc310358 Mon Sep 17 00:00:00 2001 From: Daniel Brown <ddb@star.sr.bham.ac.uk> Date: Wed, 17 Aug 2016 11:09:18 -0700 Subject: [PATCH] rearrange ordering as it was parsing put before xaxis --- test/test_scripts/random/test_unicode_printing.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/test_scripts/random/test_unicode_printing.py b/test/test_scripts/random/test_unicode_printing.py index 2afb8c3..42b5448 100644 --- a/test/test_scripts/random/test_unicode_printing.py +++ b/test/test_scripts/random/test_unicode_printing.py @@ -13,9 +13,11 @@ kat.loadKatFile("LHO_IFO_maxtem2.kat") # load the conf kat.parseKatCode( "fsig sig1 ETMXHR 10 180") kat.parseKatCode( "fsig sig1 ETMYHR 10 0") kat.parseKatCode( "pd1 myomc 10 nOMC_HROC_trans") -kat.parseKatCode( "put myomc f1 $x1") # to follow kat.parseKatCode( "xaxis sig1 f log 10 1k 10") +kat.parseKatCode( "put myomc f1 $x1") # to follow kat.parseKatCode( "yaxis abs:deg") kat.verbose = True out = kat.run() # do the computation -result.append(out['myomc']) # append the result \ No newline at end of file +result.append(out['myomc']) # append the result + +print("PASSED") \ No newline at end of file -- GitLab