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
@@ -49,7 +49,7 @@ public void AllEditorAssemblies_AreCollected()
49
49
50
50
foreach(AssemblyeditorAssemblyineditorAssemblies)
51
51
{
52
-
Assert.IsTrue(collectedAssemblies.Any(assembly =>assembly.name==editorAssembly.name&&assembly.outputPath==@"Temp\Bin\Debug\"),$"{editorAssembly.name}: was not found in collection.");
52
+
Assert.IsTrue(collectedAssemblies.Any(assembly =>assembly.name==editorAssembly.name&&assembly.outputPath==@"Temp\bin\Debug\"),$"{editorAssembly.name}: was not found in collection.");
53
53
}
54
54
}
55
55
@@ -91,7 +91,7 @@ public void PlayerAssemblies_AreNotCollected_BeforeToggling()
91
91
92
92
foreach(AssemblyplayerAssemblyinplayerAssemblies)
93
93
{
94
-
Assert.IsFalse(collectedAssemblies.Any(assembly =>assembly.name==playerAssembly.name&&assembly.outputPath==@"Temp\Bin\Debug\Player\"),$"{playerAssembly.name}: was found in collection.");
94
+
Assert.IsFalse(collectedAssemblies.Any(assembly =>assembly.name==playerAssembly.name&&assembly.outputPath==@"Temp\bin\Debug\Player\"),$"{playerAssembly.name}: was found in collection.");
95
95
}
96
96
}
97
97
@@ -106,7 +106,7 @@ public void AllPlayerAssemblies_AreCollected_AfterToggling()
106
106
107
107
foreach(AssemblyplayerAssemblyinplayerAssemblies)
108
108
{
109
-
Assert.IsTrue(collectedAssemblies.Any(assembly =>assembly.name==playerAssembly.name&&assembly.outputPath==@"Temp\Bin\Debug\Player\"),$"{playerAssembly.name}: was not found in collection.");
109
+
Assert.IsTrue(collectedAssemblies.Any(assembly =>assembly.name==playerAssembly.name&&assembly.outputPath==@"Temp\bin\Debug\Player\"),$"{playerAssembly.name}: was not found in collection.");
0 commit comments