We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caeea8a commit 2e88e74Copy full SHA for 2e88e74
test/test/event_deferral.cpp
@@ -65,15 +65,15 @@ namespace
65
{
66
// Captures will go out of scope after the first co_await call. Copy anything needed after that point.
67
const auto startStateCopy = startState;
68
- const auto finsihStateCopy = finishState;
+ const auto finishStateCopy = finishState;
69
70
REQUIRE(sender == c);
71
auto deferral = args.GetDeferral();
72
co_await resume_background();
73
wait_for_state(startStateCopy);
74
args.IncrementCounter();
75
deferral.Complete();
76
- go_to_state(finsihStateCopy);
+ go_to_state(finishStateCopy);
77
};
78
}
79
0 commit comments