diff options
Diffstat (limited to 'zenserver/testing/launch.h')
| -rw-r--r-- | zenserver/testing/launch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zenserver/testing/launch.h b/zenserver/testing/launch.h index 6fd3e39ae..f44618bfb 100644 --- a/zenserver/testing/launch.h +++ b/zenserver/testing/launch.h @@ -17,7 +17,7 @@ namespace zen { -class CasStore; +class CidStore; /** * Process launcher for test executables @@ -25,7 +25,7 @@ class CasStore; class HttpLaunchService : public HttpService { public: - HttpLaunchService(CasStore& Store, const std::filesystem::path& SandboxBaseDir); + HttpLaunchService(CidStore& Store, const std::filesystem::path& SandboxBaseDir); ~HttpLaunchService(); virtual const char* BaseUri() const override; @@ -36,7 +36,7 @@ private: spdlog::logger& m_Log; HttpRequestRouter m_Router; - CasStore& m_CasStore; + CidStore& m_CidStore; std::filesystem::path m_SandboxPath; std::atomic<int> m_SandboxCount{0}; |