Browse Source

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

PiperOrigin-RevId: 388341429
main
leveldb Team 3 years ago
committed by Victor Costan
parent
commit
8e62cc5124
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      db/recovery_test.cc

+ 1
- 1
db/recovery_test.cc View File

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

Loading…
Cancel
Save