Skip to content

Commit 26dbf67

Browse files
authored
Fix: dotnet version for RavenDb integration tests
1 parent ee249b6 commit 26dbf67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/LinkDotNet.Blog.IntegrationTests/Infrastructure/Persistence/RavenDb/BlogPostRepositoryTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ private static void StartServerIfNotRunning()
162162
ConfigureServer(new TestServerOptions
163163
{
164164
DataDirectory = "./RavenDbTest/",
165-
FrameworkVersion = "6.0.2",
165+
FrameworkVersion = "6.0.3",
166166
});
167167
}
168168
}
@@ -183,4 +183,4 @@ private async Task<BlogPost> GetBlogPostByIdAsync(string id)
183183
using var session = store.OpenAsyncSession();
184184
return await session.Query<BlogPost>().SingleOrDefaultAsync(s => s.Id == id);
185185
}
186-
}
186+
}

0 commit comments

Comments
 (0)