Explorar el Código

Kernel: Fix typo in test name

Yuri Kunde Schlesner hace 9 años
padre
commit
cdefefc539
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/tests/core/hle/kernel/hle_ipc.cpp

+ 1 - 1
src/tests/core/hle/kernel/hle_ipc.cpp

@@ -18,7 +18,7 @@ static SharedPtr<Object> MakeObject() {
     return Event::Create(ResetType::OneShot);
 }
 
-TEST_CASE("HLERequestContext::PopoulateFromIncomingCommandBuffer", "[core][kernel]") {
+TEST_CASE("HLERequestContext::PopulateFromIncomingCommandBuffer", "[core][kernel]") {
     auto session = std::get<SharedPtr<ServerSession>>(ServerSession::CreateSessionPair());
     HLERequestContext context(std::move(session));