Skip to content

Commit 791755e

Browse files
authored
Fix ReadVarint test to verify bignum instead of varint
1 parent 5490a70 commit 791755e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DuckDB.NET.Test/DuckDBDataReaderTestAllTypes.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public void ReadUBigInt()
174174
[Fact]
175175
public void ReadVarint()
176176
{
177-
VerifyDataStruct("varint", 11, new List<BigInteger>
177+
VerifyDataStruct("bignum", 11, new List<BigInteger>
178178
{
179179
BigInteger.Parse("-179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368"),
180180
BigInteger.Parse("179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368"),
@@ -701,4 +701,4 @@ class StructOfArrayTest
701701
public List<int?> A { get; set; }
702702
public List<string> B { get; set; }
703703
}
704-
}
704+
}

0 commit comments

Comments
 (0)