Skip to content

Commit

Permalink
betree/tests: fix use of private method
Browse files Browse the repository at this point in the history
Another identifier was introduced for the internal-api feature flag for this method.
  • Loading branch information
Johannes Wünsche committed May 25, 2023
1 parent 6623a64 commit 550f885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion betree/tests/src/object_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fn object_store_reinit_from_id() {
let mut db = test_db(2, 64);
let os = db.open_object_store().unwrap();
db.close_object_store(os);
let mut osl = db.iter_object_stores().unwrap();
let mut osl = db.iter_object_stores_pub().unwrap();
let _ = db
.internal_open_object_store_with_id(osl.next().unwrap().unwrap())
.unwrap();
Expand Down

0 comments on commit 550f885

Please sign in to comment.