Skip to content

Commit

Permalink
(#531) Remove StackExchange.Profiling from SQL queries
Browse files Browse the repository at this point in the history
  • Loading branch information
jibedoubleve committed Jul 30, 2024
1 parent aded4a1 commit b86a1c0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 47 deletions.
7 changes: 1 addition & 6 deletions src/Tests/Lanceur.Tests/SQLite/TestBase.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
using Dapper;
using Lanceur.Scripts;
using StackExchange.Profiling.Data;
using System.Data;
using System.Data.SQLite;
using System.SQLite.Updater;
using Lanceur.Tests.Tooling;
using Microsoft.Reactive.Testing;
using Xunit.Abstractions;

Expand Down Expand Up @@ -43,10 +41,7 @@ protected static void CreateVersion(IDbConnection db, string version)

protected IDbConnection BuildConnection()
{
var conn = new ProfiledDbConnection(
new SQLiteConnection(
ConnectionString), new OutputHelperLoggerDbProfiler(OutputHelper)
);
var conn = new SQLiteConnection(ConnectionString);
conn.Open();
return conn;
}
Expand Down
41 changes: 0 additions & 41 deletions src/Tests/Lanceur.Tests/_Tooling/OutputHelperLoggerDbProfiler.cs

This file was deleted.

0 comments on commit b86a1c0

Please sign in to comment.