From eb0de47c2656bbc94c00744ebc4fea9b9c1fc194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Wa=C5=9Bko?= Date: Tue, 9 May 2023 15:22:22 +0200 Subject: [PATCH] Update test/Tests/src/System/File_Read_Spec.enso Co-authored-by: James Dunkerley --- test/Tests/src/System/File_Read_Spec.enso | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Tests/src/System/File_Read_Spec.enso b/test/Tests/src/System/File_Read_Spec.enso index 51b144edd6fa8..c294d5df32748 100644 --- a/test/Tests/src/System/File_Read_Spec.enso +++ b/test/Tests/src/System/File_Read_Spec.enso @@ -20,7 +20,7 @@ spec = content = sample_txt.read content.should_equal "Hello World!" - Test.specify "should raise an not-found error when reading a nonexistent file even of unknown format" <| + Test.specify "should raise a not-found error when reading a nonexistent file even of unknown format" <| r1 = (File.new "nonexistent.file.of.weird-format").read r1.should_fail_with File_Error r1.catch.should_be_a File_Error.Not_Found