Skip to content

Commit

Permalink
Remove unneeded imports from C# tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoglan committed Sep 3, 2023
1 parent a67e207 commit 1b8eb7a
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion test/cs/ChoicesTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.choices {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down
5 changes: 3 additions & 2 deletions test/cs/NodeActionsTest.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
namespace canopy.node_actions {
using System.Collections.Generic;
using System.Collections;
using System;
using System.Linq;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;

using canopy.test.grammars.node_actions;

[TestClass]
Expand Down
1 change: 0 additions & 1 deletion test/cs/PredicatesTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.predicates {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down
1 change: 0 additions & 1 deletion test/cs/QuantifiersTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.quantifiers {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down
1 change: 0 additions & 1 deletion test/cs/SequencesTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.sequences {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down
1 change: 0 additions & 1 deletion test/cs/TerminalsTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.terminals {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down

0 comments on commit 1b8eb7a

Please sign in to comment.