Skip to content

Commit

Permalink
Fix unit test filename
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdavid committed Aug 25, 2016
1 parent 659c41a commit d6e920e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LiteDB.Tests/Tests/TempFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit d6e920e

Please sign in to comment.