Skip to content

Commit

Permalink
Fix missing using in functional test
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Dec 21, 2024
1 parent 3705c3e commit 1254062
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/StructId.FunctionalTests/UlidTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Dapper;
using Microsoft.Data.Sqlite;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;

namespace StructId.Functional;

Expand Down Expand Up @@ -41,7 +42,7 @@ public partial class UlidToStringConverter : ValueConverter<Ulid, string>
public UlidToStringConverter() : this(null) { }

public UlidToStringConverter(ConverterMappingHints? mappingHints = null)
: base(id => id.ToString(), value => Ulid.Parse(value), mappingHints)
: base(id => id.ToString(), value => Ulid.Parse(value), mappingHints)
{
Instantiated = true;
}
Expand Down

0 comments on commit 1254062

Please sign in to comment.