Skip to content

Commit

Permalink
Update test_RenderWindow.cpp
Browse files Browse the repository at this point in the history
made this commit on my ipad mini in class lol, surely the problem is fixed
  • Loading branch information
durkisneer1 authored Jan 17, 2024
1 parent a60271d commit 6748bd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_RenderWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class RenderWindowTest : public ::testing::Test

TEST_F(RenderWindowTest, SingletonPointersEqual)
{
const RenderWindow* window1 = &RenderWindow::getInstance();
const RenderWindow* window2 = &RenderWindow::getInstance();
const RenderWindow* window1 = &RenderWindow::get();
const RenderWindow* window2 = &RenderWindow::get();

EXPECT_EQ(window1, window2);
}
Expand Down

0 comments on commit 6748bd9

Please sign in to comment.