Skip to content

Commit e6146af

Browse files
Delete db.links before test
1 parent 680d841 commit e6146af

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

csharp/Platform.Data.Doublets.Tests/ILinksBasicTests.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
using System;
1+

2+
using System.IO;
23
using Platform.Data.Doublets.Memory.United.Generic;
34
using Platform.Memory;
45
using Xunit;
5-
using Xunit.Abstractions;
6+
67

78
namespace Platform.Data.Doublets.Tests
89
{
@@ -32,7 +33,7 @@ public static void DeleteAllUsages()
3233
[Fact]
3334
public static void FfiDeleteAllUsages()
3435
{
35-
var mem = new HeapResizableDirectMemory();
36+
File.Delete("db.links");
3637
var links = new FFI.UnitedMemoryLinks<uint>("db.links");
3738

3839
var root = links.CreatePoint();

0 commit comments

Comments
 (0)