File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -174,19 +174,22 @@ public function theSqliteDatabaseContainsATestTableWithAlphanumericStringHashVal
174174 $ this ->connectToDatabase ();
175175
176176 // Create a test table with hash values that look like scientific notation
177- $ this ->db ->exec ("DROP TABLE IF EXISTS test_export_alphanumeric_string " );
178- $ this ->db ->exec ("
177+ $ this ->db ->exec ( 'DROP TABLE IF EXISTS test_export_alphanumeric_string ' );
178+ $ this ->db ->exec (
179+ '
179180 CREATE TABLE test_export_alphanumeric_string (
180181 id INTEGER PRIMARY KEY,
181182 hash_value TEXT
182183 )
183- " );
184+ '
185+ );
184186
185187 // Insert test data with values that might be mistaken for scientific notation
186- $ this ->db ->exec ("
188+ $ this ->db ->exec (
189+ "
187190 INSERT INTO test_export_alphanumeric_string (id, hash_value) VALUES
188191 (1, '123e99')
189- " );
192+ "
193+ );
190194 }
191-
192195}
You can’t perform that action at this time.
0 commit comments