From d6e920efd4d5bd0e76613e1bfd98370b211777d6 Mon Sep 17 00:00:00 2001 From: mbdavid Date: Wed, 24 Aug 2016 21:02:07 -0300 Subject: [PATCH] Fix unit test filename --- LiteDB.Tests/Tests/TempFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LiteDB.Tests/Tests/TempFile.cs b/LiteDB.Tests/Tests/TempFile.cs index c495397b9..58bcaa45b 100644 --- a/LiteDB.Tests/Tests/TempFile.cs +++ b/LiteDB.Tests/Tests/TempFile.cs @@ -12,7 +12,7 @@ public class TempFile : IDisposable public TempFile(string connectionString = null, string ext = "db") { this.Filename = TestPlatform.GetFullPath(string.Format("test-{0}.{1}", Guid.NewGuid(), ext)); - this.ConnectionString = "filename=\"" + this.Filename + "\";" + connectionString; + this.ConnectionString = "filename=" + this.Filename + ";" + connectionString; } public void Dispose()