Skip to content

Commit

Permalink
fix: ue 5.5 compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
ImmutableJeffrey committed Nov 29, 2024
1 parent 6d6102f commit 8ccca6a
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#include "Containers/UnrealString.h"
#include "CoreTypes.h"
#include "Runtime/Launch/Resources/Version.h"

#include "Immutable/ImmutablePassport.h"

#include "Misc/AutomationTest.h"
Expand All @@ -15,7 +17,11 @@

#if WITH_DEV_AUTOMATION_TESTS

IMPLEMENT_SIMPLE_AUTOMATION_TEST(FImtblMessagesTest, "Immutable.JSMessages", EAutomationTestFlags::ApplicationContextMask | EAutomationTestFlags::ServerContext | EAutomationTestFlags::ProductFilter)
#if ((ENGINE_MAJOR_VERSION <= 4) || (ENGINE_MAJOR_VERSION == 5 && ENGINE_MINOR_VERSION <= 4))
IMPLEMENT_SIMPLE_AUTOMATION_TEST(FImtblMessagesTest, "Immutable.JSMessages", EAutomationTestFlags::ApplicationContextMask | EAutomationTestFlags::EngineFilter)
#else
IMPLEMENT_SIMPLE_AUTOMATION_TEST(FImtblMessagesTest, "Immutable.JSMessages", EAutomationTestFlags_ApplicationContextMask | EAutomationTestFlags::EngineFilter)
#endif

// EAutomationTestFlags::SmokeFilter -- note that SmokeFilter will run
// automatically during cooking
Expand Down

0 comments on commit 8ccca6a

Please sign in to comment.