Skip to content

Commit 043b69b

Browse files
committed
Update test
1 parent 9a727c0 commit 043b69b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ServerCodeExciserTest/Solutions/Common/DeclarationInFunctionRootScopeWithReturnValTest.common

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class UDeclarationInFunctionRootScopeWithReturnValTest
3434
#endif // WITH_SERVER
3535
}
3636

37-
double TestFloat()
37+
float TestFloat()
3838
{
3939
ensure(System::IsServer());
4040
#ifdef WITH_SERVER
@@ -67,12 +67,12 @@ class UDeclarationInFunctionRootScopeWithReturnValTest
6767
ensure(System::IsServer());
6868
#ifdef WITH_SERVER
6969

70-
float64 ThisMustBeGuarded = 0.0;
70+
float64 ThisMustBeGuarded = 0.0f;
7171
ThisMustBeGuarded--;
7272

7373
return ThisMustBeGuarded;
7474
#else
75-
return 0.0;
75+
return 0.0f;
7676
#endif // WITH_SERVER
7777
}
7878

0 commit comments

Comments
 (0)