From 2f92b7c641e08e888c67eb0cec94c04c77d8684d Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 27 Oct 2024 09:50:44 +0100 Subject: [PATCH] Fix formatting --- src/windows-emulator-test/emulation_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/windows-emulator-test/emulation_test.cpp b/src/windows-emulator-test/emulation_test.cpp index 81b57ae3..708e617e 100644 --- a/src/windows-emulator-test/emulation_test.cpp +++ b/src/windows-emulator-test/emulation_test.cpp @@ -15,7 +15,7 @@ namespace test { constexpr auto count = 200000; - windows_emulator emu{ "./test-sample.exe" }; + windows_emulator emu{"./test-sample.exe"}; emu.logger.disable_output(true); emu.start({}, count); @@ -24,7 +24,7 @@ namespace test TEST(EmulationTest, CountedEmulationIsAccurate) { - windows_emulator emu{ "./test-sample.exe" }; + windows_emulator emu{"./test-sample.exe"}; emu.logger.disable_output(true); emu.start(); @@ -32,7 +32,7 @@ namespace test const auto executedInstructions = emu.process().executed_instructions; - windows_emulator new_emu{ "./test-sample.exe" }; + windows_emulator new_emu{"./test-sample.exe"}; new_emu.logger.disable_output(true); constexpr auto offset = 1;