Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Giorgi committed Sep 28, 2023
1 parent 78f8c64 commit 75bd7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DuckDB.NET.Test/DuckDBDataReaderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void ReadIntervalValues()
var reader = duckDbCommand.ExecuteReader();
reader.Read();
reader.GetFieldType(0).Should().Be(typeof(DuckDBInterval));
reader.GetDataTypeName(0).Should().Be("DuckdbTypeInterval");
reader.GetDataTypeName(0).Should().Be(DuckDBType.Interval.ToString());

var interval = reader.GetFieldValue<DuckDBInterval>(0);

Expand Down

0 comments on commit 75bd7c1

Please sign in to comment.