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

smudgeLfs: Use default value

Eventually this should probably become a struct of options.
This commit is contained in:
Eelco Dolstra 2025-02-10 16:11:53 +01:00
parent c02fcebb30
commit d4ecf15dad
5 changed files with 14 additions and 11 deletions

View file

@ -79,7 +79,7 @@ TEST_F(GitUtilsTest, sink_basic)
// sink->createHardlink("foo-1.1/links/foo-2", CanonPath("foo-1.1/hello"));
auto result = repo->dereferenceSingletonDirectory(sink->flush());
auto accessor = repo->getAccessor(result, false, false);
auto accessor = repo->getAccessor(result, false);
auto entries = accessor->readDirectory(CanonPath::root);
ASSERT_EQ(entries.size(), 5);
ASSERT_EQ(accessor->readFile(CanonPath("hello")), "hello world");