Skip to content

Commit 68a710d

Browse files
committed
Fix broken tests caused by output variations across platforms
1 parent de7f67e commit 68a710d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/src/test/other.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ to the wrapped cursor object.
7777

7878
cr = DBInterface.execute(stmt)
7979
Tables.rowtable(cr)
80-
#-> @NamedTuple{ … }[(person_id = 1780, year_of_birth = 1940), … ]
80+
#-> [(person_id = 1780, year_of_birth = 1940), … ]
8181

8282
cr = DBInterface.execute(stmt)
8383
Tables.columntable(cr)
84-
#-> (person_id = [1780, … ], year_of_birth = [1940, … ])
84+
#-> (person_id = [1780, … ], year_of_birth = [1940, … ])
8585

8686
DBInterface.close!(stmt)
8787

0 commit comments

Comments
 (0)