Skip to content

Commit 0872fb7

Browse files
committed
reduce column count
1 parent 88c4ff1 commit 0872fb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/functional/adapter/mssql/test_mssql_seed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
class TestLargeSeed:
1212
def build_large_seed_file(self):
13-
row_count = 1000
14-
column_count = 100
13+
row_count = 3000
14+
column_count = 10
1515

1616
headers = ",".join(["id"] + [f"column_{_}" for _ in range(1, column_count)])
1717
seed_data = [headers]

0 commit comments

Comments
 (0)