You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/PAModelTests/NameCollisionTests.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ public void TestScreenRename(string appName)
111
111
}
112
112
113
113
// There should be no expected files that were not found
114
-
Assert.AreEqual(expectedScreens.Count,0,$"{expectedScreens.Count} screens not found in Src directory.");
114
+
Assert.IsEmpty(expectedScreens,$"{expectedScreens.Count} screens not found in Src directory.");
115
115
}
116
116
}
117
117
@@ -167,7 +167,7 @@ public void TestEditorStateRename(string appName)
167
167
}
168
168
169
169
// There should be no expected files that were not found
170
-
Assert.AreEqual(expectedControlsWithEditorState.Count,0,$"{expectedControlsWithEditorState.Count} editor state files not found in EditorState directory.");
170
+
Assert.IsEmpty(expectedControlsWithEditorState,$"{expectedControlsWithEditorState.Count} editor state files not found in EditorState directory.");
171
171
}
172
172
}
173
173
@@ -267,6 +267,6 @@ public void TestAssetFileCollision()
0 commit comments