@@ -802,23 +802,20 @@ def test_add_common_creation_steps_to_queue(self):
802
802
803
803
sql_insert_required = (
804
804
'INSERT INTO qiita.required_sample_info '
805
- '(study_id, sample_id, physical_location, has_physical_specimen , '
806
- 'has_extracted_data, sample_type, required_sample_info_status_id , '
807
- 'collection_timestamp, host_subject_id, description, latitude , '
808
- 'longitude ) '
805
+ '(study_id, sample_id, collection_timestamp, description , '
806
+ 'has_extracted_data, has_physical_specimen, host_subject_id , '
807
+ 'latitude, longitude, physical_location , '
808
+ 'required_sample_info_status_id, sample_type ) '
809
809
'VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)' )
810
810
sql_insert_required_params_1 = (
811
- 2 , '2.Sample1' , 'location1' , True , True , 'type1' , 1 ,
812
- datetime (2014 , 5 , 29 , 12 , 24 , 51 ), 'NotIdentified' ,
813
- 'Test Sample 1' , 42.42 , 41.41 )
811
+ 2 , '2.Sample1' , datetime (2014 , 5 , 29 , 12 , 24 , 51 ), 'Test Sample 1' ,
812
+ True , True , 'NotIdentified' , 42.42 , 41.41 , 'location1' , 1 , 'type1' )
814
813
sql_insert_required_params_2 = (
815
- 2 , '2.Sample2' , 'location1' , True , True , 'type1' , 1 ,
816
- datetime (2014 , 5 , 29 , 12 , 24 , 51 ), 'NotIdentified' ,
817
- 'Test Sample 2' , 4.2 , 1.1 )
814
+ 2 , '2.Sample2' , datetime (2014 , 5 , 29 , 12 , 24 , 51 ), 'Test Sample 2' ,
815
+ True , True , 'NotIdentified' , 4.2 , 1.1 , 'location1' , 1 , 'type1' )
818
816
sql_insert_required_params_3 = (
819
- 2 , '2.Sample3' , 'location1' , True , True , 'type1' , 1 ,
820
- datetime (2014 , 5 , 29 , 12 , 24 , 51 ), 'NotIdentified' ,
821
- 'Test Sample 3' , 4.8 , 4.41 )
817
+ 2 , '2.Sample3' , datetime (2014 , 5 , 29 , 12 , 24 , 51 ), 'Test Sample 3' ,
818
+ True , True , 'NotIdentified' , 4.8 , 4.41 , 'location1' , 1 , 'type1' )
822
819
823
820
sql_insert_sample_cols = (
824
821
'INSERT INTO qiita.study_sample_columns '
0 commit comments