Skip to content
Snippets Groups Projects
Commit 97d52fc8 authored by felmer's avatar felmer
Browse files

LMS-855 bug in run.sh fixed

SVN: 10852
parent 02d53a5c
No related branches found
No related tags found
No related merge requests found
...@@ -745,11 +745,11 @@ function assert_correct_content { ...@@ -745,11 +745,11 @@ function assert_correct_content {
assert_correct_content_of_image_analysis_data 3VCP3 ".*-6.*3VCP3$" assert_correct_content_of_image_analysis_data 3VCP3 ".*-6.*3VCP3$"
assert_correct_content_of_image_analysis_data 3VCP4 ".*-9.*3VCP4$" assert_correct_content_of_image_analysis_data 3VCP4 ".*-9.*3VCP4$"
assert_correct_content_of_unidentified_plate_in_store UnknownPlate assert_correct_content_of_unidentified_plate_in_store UnknownPlate
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
# id;experiment_code;data_store_code;code;is_placeholder;data_id_parent;is_complete;data_producer_code;production_timestamp # id;experiment_code;data_store_code;code;is_placeholder;data_id_parent;is_complete;data_producer_code;production_timestamp
......
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