summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-06-22 02:21:18 -0700
committerGravatar Yuri Kunde Schlesner2017-06-22 02:21:18 -0700
commitcdefefc53985dfe1a8117a5c08c9374fb3ad48da (patch)
treee0ecff1581650c65d6ea85efa2e6da5d30fc7c10 /src/tests
parentKernel/IPC: Support translation of null handles (diff)
downloadyuzu-cdefefc53985dfe1a8117a5c08c9374fb3ad48da.tar.gz
yuzu-cdefefc53985dfe1a8117a5c08c9374fb3ad48da.tar.xz
yuzu-cdefefc53985dfe1a8117a5c08c9374fb3ad48da.zip
Kernel: Fix typo in test name
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/core/hle/kernel/hle_ipc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/core/hle/kernel/hle_ipc.cpp b/src/tests/core/hle/kernel/hle_ipc.cpp
index 6feca2ba3..52336d027 100644
--- a/src/tests/core/hle/kernel/hle_ipc.cpp
+++ b/src/tests/core/hle/kernel/hle_ipc.cpp
@@ -18,7 +18,7 @@ static SharedPtr<Object> MakeObject() {
18 return Event::Create(ResetType::OneShot); 18 return Event::Create(ResetType::OneShot);
19} 19}
20 20
21TEST_CASE("HLERequestContext::PopoulateFromIncomingCommandBuffer", "[core][kernel]") { 21TEST_CASE("HLERequestContext::PopulateFromIncomingCommandBuffer", "[core][kernel]") {
22 auto session = std::get<SharedPtr<ServerSession>>(ServerSession::CreateSessionPair()); 22 auto session = std::get<SharedPtr<ServerSession>>(ServerSession::CreateSessionPair());
23 HLERequestContext context(std::move(session)); 23 HLERequestContext context(std::move(session));
24 24