Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Data.SqlClient;
using System.IO;
using System.Reflection;
using System.Text;

namespace DevExtreme.AspNet.Data.Tests {

Expand Down Expand Up @@ -32,10 +29,12 @@ public void ResetDatabase() {
conn.Open();

void Exec(string sql) {
#pragma warning disable DX0024 // this is assembly with tests
using(var cmd = conn.CreateCommand()) {
cmd.CommandText = sql;
cmd.ExecuteNonQuery();
}
#pragma warning restore DX0024 // this is assembly with tests
}

try {
Expand Down
Loading