Skip to content
Snippets Groups Projects
Commit 4382fbf6 authored by felmer's avatar felmer
Browse files

LMS-855 bug in run.sh fixed

SVN: 10854
parent 93a94a81
No related branches found
No related tags found
No related merge requests found
...@@ -748,7 +748,7 @@ function assert_correct_content { ...@@ -748,7 +748,7 @@ function assert_correct_content {
local file=`find_dataset_dir ".*-15$"`/original/3VCP1.txt local file=`find_dataset_dir ".*-15$"`/original/3VCP1.txt
assert_file_exists $file assert_file_exists $file
local content=`cat $file` local content=`cat $file`
if [ $content != "hello world" ]; then if [[ $content != "hello world" ]]; then
report_error "wrong content: <$content>" report_error "wrong content: <$content>"
fi fi
# result set columns are # result set columns are
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment