Fixed an issue where the wrong version number was being reported in a warning message. It showed the latest version instead of the original version number.

Signed-off-by: santorac <55155825+santorac@users.noreply.github.com>
This commit is contained in:
santorac
2021-10-21 12:13:45 -07:00
parent bf2997f960
commit f4d5a75574
4 changed files with 9 additions and 3 deletions
@@ -728,6 +728,8 @@ namespace UnitTest
// Then we force the material data to update to the latest material type version specification
ErrorMessageFinder warningFinder; // Note this finds errors and warnings, and we're looking for a warning.
warningFinder.AddExpectedErrorMessage("Automatic updates are available. Consider updating the .material source file");
warningFinder.AddExpectedErrorMessage("This material is based on version '1'");
warningFinder.AddExpectedErrorMessage("material type is now at version '10'");
material.ApplyVersionUpdates();
warningFinder.CheckExpectedErrorsFound();