From 67544b3449b5d154a0b2d338986ce85459026ae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Meny?= Date: Thu, 11 Aug 2022 11:48:36 +0100 Subject: [PATCH] Typo --- spec/services/archive_storage_service_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/services/archive_storage_service_spec.rb b/spec/services/archive_storage_service_spec.rb index e4843dd91..fb33e4dd3 100644 --- a/spec/services/archive_storage_service_spec.rb +++ b/spec/services/archive_storage_service_spec.rb @@ -57,7 +57,7 @@ RSpec.describe ArchiveStorageService do .to raise_error(RuntimeError, "File too large to be extracted") end - it "raises an error of a file does not exist" do + it "raises an error if a file does not exist" do expect { archive_service.get_file_io("random.zzz") } .to raise_error(Errno::ENOENT) end