Increase file wait timeout to 30s in subprocess test

This commit is contained in:
Mike Gelfand 2020-10-15 01:27:52 +03:00
parent 7cbfaf9d59
commit b28839bd6d
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ protected:
void waitForFileToExist(std::string const& path)
{
auto const test = [path]() { return tr_sys_path_exists(path.data(), nullptr); };
EXPECT_TRUE(waitFor(test, 2000));
EXPECT_TRUE(waitFor(test, 30000));
}
void SetUp() override