Skip to content

Commit

Permalink
Cleaning up
Browse files Browse the repository at this point in the history
  • Loading branch information
ttossavainen committed Sep 10, 2024
1 parent bd2308f commit 4ae5fbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Frends.MicrosoftSQL.BulkInsert.Definitions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.Data.SqlClient;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Frends.MicrosoftSQL.BulkInsert.Tests;

Expand Down Expand Up @@ -206,7 +206,7 @@ public async Task TestBulkInsert_KeepNulls()
CommandTimeoutSeconds = 60,
FireTriggers = false,
KeepIdentity = false,
NotifyAfter = new Random().Next(0, 1001),
NotifyAfter = new Random().Next(0, 1001),
ConvertEmptyPropertyValuesToNull = false,
KeepNulls = true,
TableLock = false,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Frends.MicrosoftSQL.BulkInsert.Definitions;
using Microsoft.Data.SqlClient;
using Newtonsoft.Json.Linq;
using System;
using System.ComponentModel;
Expand All @@ -8,7 +9,6 @@
using System.Runtime.Loader;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Data.SqlClient;

namespace Frends.MicrosoftSQL.BulkInsert;

Expand Down

0 comments on commit 4ae5fbb

Please sign in to comment.