From 682a32cd46f741cd5502378bba38a7b17c0eff67 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Thu, 25 Jul 2024 09:42:06 +0200 Subject: [PATCH] Fix typos (#126) --- test/mini_magick_test.rb | 2 +- test/vips_test.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/mini_magick_test.rb b/test/mini_magick_test.rb index 3af93c4..b899b89 100644 --- a/test/mini_magick_test.rb +++ b/test/mini_magick_test.rb @@ -421,7 +421,7 @@ @pipeline = ImageProcessing::MiniMagick.source(@portrait) end - it "rotates the image by specifed number of degrees" do + it "rotates the image by specified number of degrees" do assert_dimensions [600, 800], @pipeline.rotate!(0) assert_dimensions [800, 600], @pipeline.rotate!(90) assert_dimensions [600, 800], @pipeline.rotate!("180") diff --git a/test/vips_test.rb b/test/vips_test.rb index 38ca177..c9279e9 100644 --- a/test/vips_test.rb +++ b/test/vips_test.rb @@ -394,7 +394,7 @@ @pipeline = ImageProcessing::Vips.source(@portrait) end - it "rotates by muliples of 90" do + it "rotates by multiples of 90" do assert_dimensions [600, 800], @pipeline.rotate!(0) assert_dimensions [800, 600], @pipeline.rotate!(90) assert_dimensions [600, 800], @pipeline.rotate!(180)