Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Aug 5, 2024
1 parent e6a2334 commit 91cd0ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ TEST(MyGame, SimpleMultiplayerTest)
// You can access game worlds
UWorld* ServerWorld = Server->GetWorld();
ASSERT_THAT(ServerWorld, Is::Not::Null);
UWorld* ClientWorld = Server->GetWorld();
UWorld* ClientWorld = Client->GetWorld();
ASSERT_THAT(ClientWorld, Is::Not::Null);
// You can access actors in worlds
Expand Down
2 changes: 1 addition & 1 deletion Source/UEST/Private/ScopedGameTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ TEST(UEST, ScopedGame, Simple)
// You can access game worlds
UWorld* ServerWorld = Server->GetWorld();
ASSERT_THAT(ServerWorld, Is::Not::Null);
UWorld* ClientWorld = Server->GetWorld();
UWorld* ClientWorld = Client->GetWorld();
ASSERT_THAT(ClientWorld, Is::Not::Null);

// You can access actors in worlds
Expand Down

0 comments on commit 91cd0ed

Please sign in to comment.