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:
parent
4a19f4a866
commit
a7c841f704
35 changed files with 269 additions and 105 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue