Remove the / prefix from the recovery_test test file to prevent a double /.

PiperOrigin-RevId: 388341429
This commit is contained in:
leveldb Team 2021-08-03 00:25:26 +00:00 committed by Victor Costan
parent 5d94ad4d95
commit 8e62cc5124

View File

@ -18,7 +18,7 @@ namespace leveldb {
class RecoveryTest : public testing::Test {
public:
RecoveryTest() : env_(Env::Default()), db_(nullptr) {
dbname_ = testing::TempDir() + "/recovery_test";
dbname_ = testing::TempDir() + "recovery_test";
DestroyDB(dbname_, Options());
Open();
}