diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-21 10:00:35 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-21 10:00:35 +0100 |
commit | 70b1bf50de703330436f2ae9cb103fe33cbb567e (patch) | |
tree | 6e5c9bc256ae8392f94d2d863ecd345f6246927f /src/test/SceneManagerTest.cpp | |
parent | aa00be5fae68e4ccb7b592f1193d86f09105723a (diff) |
`make format`
Diffstat (limited to 'src/test/SceneManagerTest.cpp')
-rw-r--r-- | src/test/SceneManagerTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/SceneManagerTest.cpp b/src/test/SceneManagerTest.cpp index dab2ce9..1efcfb2 100644 --- a/src/test/SceneManagerTest.cpp +++ b/src/test/SceneManagerTest.cpp @@ -21,7 +21,7 @@ public: GameObject object3 = mgr.new_object("scene_1", "tag_scene_1", Vector2{2, 0}, 0, 1); } - string get_name() const { return "scene1";} + string get_name() const { return "scene1"; } }; class ConcreteScene2 : public Scene { @@ -36,7 +36,7 @@ public: GameObject object4 = mgr.new_object("scene_2", "tag_scene_2", Vector2{0, 3}, 0, 1); } - string get_name() const { return "scene2";} + string get_name() const { return "scene2"; } }; class SceneManagerTest : public ::testing::Test { |