diff --git a/test/unit/org_test.rb b/test/unit/org_test.rb index 40720a3..0d5e284 100644 --- a/test/unit/org_test.rb +++ b/test/unit/org_test.rb @@ -66,7 +66,7 @@ end # --------------------------------------------------- - test "should resize logo to a height of 75" do + test "should resize logo to a height of 100" do ['logo.jpg', # this one is at 160x160 'logo_300x300.jpg', 'logo_100x100.jpg'].each do |file| @@ -75,7 +75,7 @@ @org.logo = Dragonfly.app.fetch_file("#{path}") assert @org.valid?, "expected the logo to have been attached to the org" - assert_equal 75, @org.logo.height, "expected the logo to have been resized properly" + assert_equal 100, @org.logo.height, "expected the logo to have been resized properly" end end