Skip to content

Commit f84d49f

Browse files
committed
remove not applicable test
1 parent fee118c commit f84d49f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/EFCore.Jet.FunctionalTests/JetValueGenerationScenariosTestBase.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
856856
}
857857
}
858858

859-
// #6044
859+
/*// #6044
860860
[ConditionalFact]
861861
public async Task Insert_and_update_with_computed_column_with_function()
862862
{
@@ -1024,7 +1024,7 @@ RETURN @FullName
10241024
context.Database.ExecuteSqlRaw("DROP FUNCTION [dbo].[GetFullName];");
10251025
testStore?.Dispose();
10261026
}
1027-
}
1027+
}*/
10281028

10291029
[ConditionalFact]
10301030
public async Task Insert_with_client_generated_GUID_key()
@@ -1176,8 +1176,8 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
11761176
.Entity<GuidBlog>(
11771177
eb =>
11781178
{
1179-
eb.Property(e => e.Id).HasDefaultValueSql("newsequentialid()").HasSentinel(_sentinel);
1180-
eb.Property(e => e.NotId).HasDefaultValueSql("newsequentialid()").HasSentinel(_sentinel);
1179+
eb.Property(e => e.Id).HasDefaultValueSql("GenGUID()").HasSentinel(_sentinel);
1180+
eb.Property(e => e.NotId).HasDefaultValueSql("GenGUID()").HasSentinel(_sentinel);
11811181
});
11821182
}
11831183
}

0 commit comments

Comments
 (0)