Commit 0b3f7404a4eb5a6b0013ea6629e54f82b194b174
Committed by
Victor Costa
1 parent
869c820d
Exists in
staging
and in
4 other branches
profile_description_block: fix test
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
plugins/profile_description_block/test/unit/profile_description_block_test.rb
... | ... | @@ -17,7 +17,7 @@ class ProfileDescriptionBlockTest < ActiveSupport::TestCase |
17 | 17 | should "show profile description inside block" do |
18 | 18 | new_block = ProfileDescriptionBlock.create! |
19 | 19 | @profile.boxes.first.blocks << new_block |
20 | - block_menssage = "Description field are empty" | |
20 | + block_menssage = "Description field is empty" | |
21 | 21 | assert (instance_eval(&Block.last.content).include?(block_menssage)), |
22 | 22 | "description block doesn't show not found description message" |
23 | 23 | description = "This is an test" | ... | ... |