Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Jan 31, 2025
1 parent eaf3953 commit e280aa5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion test/cxx/Core/ApplicationPool/PoolTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ namespace tut {
bool retainSessions;

Core_ApplicationPool_PoolTest()
: skContext(skContextSchema)
: skContext(skContextSchema),
context(false)
{
retainSessions = false;
wrapperRegistry.finalize();
Expand Down
3 changes: 2 additions & 1 deletion test/cxx/Core/ApplicationPool/ProcessTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ namespace tut {
FileDescriptor server1, server2, server3;

Core_ApplicationPool_ProcessTest()
: skContext(skContextSchema)
: skContext(skContextSchema),
context(false)
{
wrapperRegistry.finalize();
skContext.resourceLocator = resourceLocator;
Expand Down
3 changes: 2 additions & 1 deletion test/cxx/Core/ControllerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ namespace tut {
: bg(false, true),
context(skSchema),
singleAppModeSchema(&wrapperRegistry),
skContext(skContextSchema)
skContext(skContextSchema),
apContext(false)
{
config["thread_number"] = 1;
config["multi_app"] = false;
Expand Down

0 comments on commit e280aa5

Please sign in to comment.