From 832638290bfc4a84d648dc82eabaa20f7ee5377a Mon Sep 17 00:00:00 2001 From: Yeongdo Park Date: Tue, 1 Jan 2019 13:28:09 -0500 Subject: [PATCH] fix test script to use argument to open 1-D flame solution --- testApp/Alltest2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testApp/Alltest2.py b/testApp/Alltest2.py index a0383f6..8b661cc 100755 --- a/testApp/Alltest2.py +++ b/testApp/Alltest2.py @@ -30,7 +30,7 @@ error_cases=[] FNULL = open(os.devnull, 'w') -with open('./c2h6_diffusion.csv', 'rb') as csvfile: +with open(test_set_file, 'rb') as csvfile: spamreader = csv.reader(csvfile) # , delimiter=' ', quotechar='|') header = spamreader.next()