Piotr Czajkowski преди 4 години
родител
ревизия
611d4e01fd
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      makefile

+ 1 - 1
makefile

@@ -13,6 +13,6 @@ test: anonymize
 	@cmp testFiles/input.docx testFiles/output.docx -s ; if [ $$? -eq 0 ] ; then echo "FAILURE: Files should differ after anonymizing!"; exit 1; fi
 	@./anonymize testFiles/output.docx -d
 	@cmp testFiles/input.docx testFiles/output.docx -s ; if [ $$? -eq 0 ] ; then echo "OK"; else echo "FAILURE: Files should be the same after de-anonymizing!"; exit 1; fi
-	@rm testFiles/output.docx testFiles/input.docx.bin testFiles/output.docx.bin
+	@rm testFiles/output.docx testFiles/output.docx.bin
 
 default: anonymize