Skip to content

Commit 1ddb9d0

Browse files
committed
Resolve merge problem.
1 parent b7027f3 commit 1ddb9d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/selfie-lib/selfie_lib/CacheSelfieBinary.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _to_match_disk_impl(self, sub: str, is_todo: bool) -> T:
3333
self.disk.write_disk(Snapshot.of(serialized_data), sub, call)
3434

3535
if is_todo:
36-
system.write_inline(TodoStub.toMatchDisk.create_literal(), call)
36+
system.write_inline(TodoStub.to_match_disk.create_literal(), call)
3737

3838
return actual
3939
else:
@@ -69,7 +69,7 @@ def _to_be_file_impl(self, subpath: str, is_todo: bool) -> T:
6969
actual = self.generator()
7070

7171
if is_todo:
72-
system.write_inline(TodoStub.toBeFile.create_literal(), call)
72+
system.write_inline(TodoStub.to_be_file.create_literal(), call)
7373

7474
with open(subpath, "wb") as file:
7575
file.write(self.roundtrip.serialize(actual))

0 commit comments

Comments
 (0)