1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-27 20:51:00 +01:00

Make store setting and store flags use StoreReference

This commit is contained in:
John Ericson 2024-01-24 11:05:26 -05:00
parent 4a19f4a866
commit a7c841f704
35 changed files with 269 additions and 105 deletions

View file

@ -16,7 +16,12 @@ class LibStoreTest : public virtual ::testing::Test {
protected:
LibStoreTest()
: store(openStore("dummy://"))
: store(openStore({
.variant = StoreReference::Specified {
.scheme = "dummy",
.authority = "",
},
}))
{ }
ref<Store> store;