Skip to content

Commit

Permalink
idk
Browse files Browse the repository at this point in the history
  • Loading branch information
altalk23 committed Jun 2, 2024
1 parent 617001d commit 9e1ac10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Hook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ TEST(HookTest, NoHandler) {

TEST(HookTest, NoHooks) {
HandlerHandle handlerHandle;
// makeHandler<1>(handlerHandle);
makeHandler<1>(handlerHandle);
EXPECT_EQ(callFunction<1>(), 1);
}

Expand All @@ -104,7 +104,7 @@ TEST(HookTest, SingleHook) {
HandlerHandle handlerHandle;
makeHandler<3>(handlerHandle);

makeHook<3>(handlerHandle);
// makeHook<3>(handlerHandle);

EXPECT_EQ(callFunction<3>(), 3);
}
Expand Down

0 comments on commit 9e1ac10

Please sign in to comment.