Skip to content

Commit 218aac3

Browse files
authored
Fix incorrect import in DynamicClassFixture (#3546)
1 parent 705d794 commit 218aac3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/NHibernate.Test/Async/EntityModeTest/Map/Basic/DynamicClassFixture.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
//------------------------------------------------------------------------------
99

1010

11+
using System;
1112
using System.Collections;
1213
using System.Collections.Generic;
1314
using System.Dynamic;
1415
using System.Linq.Dynamic.Core;
1516
using System.Linq;
16-
using Antlr.Runtime.Misc;
1717
using NUnit.Framework;
1818
using NHibernate.Criterion;
1919
using NHibernate.Linq;

src/NHibernate.Test/EntityModeTest/Map/Basic/DynamicClassFixture.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using System.Collections;
1+
using System;
2+
using System.Collections;
23
using System.Collections.Generic;
34
using System.Dynamic;
45
using System.Linq.Dynamic.Core;
56
using System.Linq;
6-
using Antlr.Runtime.Misc;
77
using NUnit.Framework;
88
using NHibernate.Criterion;
99

0 commit comments

Comments
 (0)