fix lwrp smoke test setup. Had copied the wrong line into the static setup.

This commit is contained in:
ryanhy 2019-07-02 10:28:13 -07:00
Родитель 528acd522e
Коммит 87898676f4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -6,8 +6,8 @@ public class TestSetup : IPrebuildSetup
{
public void Setup()
{
new EnablePlatformPrebuildStep().Setup();
ImageHandlingSetup.Setup();
new SetupGraphicsTestCases().Setup();
}
}
@ -15,6 +15,6 @@ public static class Setup
{
public static void SetupAll()
{
new SetupGraphicsTestCases().Setup();
new EnablePlatformPrebuildStep().Setup();
}
}