File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -71,12 +71,12 @@ public static void AreEqual(
71
71
{
72
72
string reason = string . Empty ;
73
73
74
- if ( AreCollectionsEqual ( expected ,
74
+ if ( ! AreCollectionsEqual ( expected ,
75
75
actual ,
76
76
ref reason ) )
77
77
{
78
78
Assert . HandleFail (
79
- "CollectionAssert.AreNotEqual " ,
79
+ "CollectionAssert.AreEqual " ,
80
80
string . Format ( CollectionEqualReason , new object [ 2 ]
81
81
{
82
82
message ,
@@ -99,12 +99,12 @@ public static void AreNotEqual(
99
99
{
100
100
string reason = string . Empty ;
101
101
102
- if ( ! AreCollectionsEqual ( notExpected ,
102
+ if ( AreCollectionsEqual ( notExpected ,
103
103
actual ,
104
104
ref reason ) )
105
105
{
106
106
Assert . HandleFail (
107
- "CollectionAssert.AreEqual " ,
107
+ "CollectionAssert.AreNotEqual " ,
108
108
string . Format ( CollectionEqualReason , new object [ 2 ]
109
109
{
110
110
message ,
You can’t perform that action at this time.
0 commit comments