From 9858c52960cdef8ef420526256f4a4b4b1613d14 Mon Sep 17 00:00:00 2001 From: Caj Larsson Date: Mon, 25 Apr 2022 00:32:13 +0800 Subject: [PATCH] Adding lost fix --- integration/filesystem_bog_file_repository.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration/filesystem_bog_file_repository.go b/integration/filesystem_bog_file_repository.go index 460d0ae..1aa5e09 100644 --- a/integration/filesystem_bog_file_repository.go +++ b/integration/filesystem_bog_file_repository.go @@ -89,5 +89,6 @@ func (f FileSystemBogRepository) Open(filename string, user_agent_label string) } func (f FileSystemBogRepository) Delete(filename string, user_agent_label string) { - + abs_path := f.absPath(filename, user_agent_label) + os.Remove(abs_path) }