From e4ff06baad6a7479dde3eb837b7aecf9c98a70a7 Mon Sep 17 00:00:00 2001 From: Luke Melia Date: Wed, 12 Feb 2014 15:24:44 -0500 Subject: [PATCH] Fixed typo in test name --- spec/components/guardian_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/components/guardian_spec.rb b/spec/components/guardian_spec.rb index 96e6321f9e0..2e757d5415a 100644 --- a/spec/components/guardian_spec.rb +++ b/spec/components/guardian_spec.rb @@ -876,7 +876,7 @@ describe Guardian do Guardian.new(moderator).can_delete?(category).should be_false end - it "can't be deleted if it is the Uncategorizied Category" do + it "can't be deleted if it is the Uncategorized Category" do uncategorized_cat_id = SiteSetting.uncategorized_category_id uncategorized_category = Category.find(uncategorized_cat_id) Guardian.new(admin).can_delete?(uncategorized_category).should be_false