Skip to content

Commit 70a719a

Browse files
committed
[UnitTest] - fix namespaces for data-structures-tests
1 parent f3079a5 commit 70a719a

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

UnitTest/DataStructuresTests/BinarySearchTreeTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using DataStructures.Trees;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32
using System.Linq;
3+
using DataStructures.Trees;
44
using Xunit;
55

6-
namespace C_Sharp_Algorithms
6+
namespace UnitTest.DataStructuresTests
77
{
88
public static class BinarySearchTreeTest
99
{

UnitTest/DataStructuresTests/BinomialHeapsTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using DataStructures.Heaps;
22
using Xunit;
33

4-
namespace C_Sharp_Algorithms.DataStructuresTests
4+
namespace UnitTest.DataStructuresTests
55
{
66
public static class BinomialHeapsTest
77
{

UnitTest/DataStructuresTests/GraphsDirectedWeightedDenseGraphTest.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
using System;
2-
using System.Linq;
32
using System.Diagnostics;
4-
3+
using System.Linq;
54
using DataStructures.Graphs;
65

7-
namespace C_Sharp_Algorithms.DataStructuresTests
6+
namespace UnitTest.DataStructuresTests
87
{
98
public static class GraphsDirectedWeightedDenseGraphTest
109
{

0 commit comments

Comments
 (0)