Skip to content

Commit a2542a8

Browse files
committed
fix empty lines in batch sizes tests
1 parent d2c9444 commit a2542a8

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

tests/functional/adapter/test_seed.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,10 @@ class TestSeedBatchSizeMaxSQLServer(SeedConfigBase):
189189
@pytest.fixture(scope="class")
190190
def seeds(self, test_data_dir):
191191
return {
192-
"five_columns.csv": """
193-
seed_id,first_name,email,ip_address,birthday
192+
"five_columns.csv": """seed_id,first_name,email,ip_address,birthday
194193
1,Larry,[email protected],69.135.206.194,2008-09-12 19:08:31
195194
2,Larry,[email protected],64.210.133.162,1978-05-09 04:15:14
196-
3,Anna,[email protected],168.104.64.114,2011-10-16 04:07:57
197-
"""
195+
3,Anna,[email protected],168.104.64.114,2011-10-16 04:07:57"""
198196
}
199197

200198
def test_max_batch_size(self, project, logs_dir):
@@ -209,12 +207,10 @@ class TestSeedBatchSizeCustomSQLServer(SeedConfigBase):
209207
@pytest.fixture(scope="class")
210208
def seeds(self, test_data_dir):
211209
return {
212-
"six_columns.csv": """
213-
seed_id,first_name,last_name,email,ip_address,birthday
210+
"six_columns.csv": """seed_id,first_name,last_name,email,ip_address,birthday
214211
1,Larry,King,[email protected],69.135.206.194,2008-09-12 19:08:31
215212
2,Larry,Perkins,[email protected],64.210.133.162,1978-05-09 04:15:14
216-
3,Anna,Montgomery,[email protected],168.104.64.114,2011-10-16 04:07:57
217-
"""
213+
3,Anna,Montgomery,[email protected],168.104.64.114,2011-10-16 04:07:57"""
218214
}
219215

220216
def test_custom_batch_size(self, project, logs_dir):

0 commit comments

Comments
 (0)