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
differences.Add($"The following expected assets weren't found in the manifest {string.Join(", ",missingAssets.Select(a =>a.Identity))}.");
374
+
}
375
+
376
+
if(unexpectedAssets.Any())
377
+
{
378
+
differences.Add($"The following additional unexpected assets were found in the manifest {string.Join(", ",unexpectedAssets.Select(a =>a.Identity))}.");
379
+
}
380
+
381
+
if(differences.Any())
382
+
{
383
+
differences.Add("If the difference in baselines is expected, please re-generate the baselines using the src/RazorSdk/update-test-baselines.ps1 script.");
0 commit comments