Skip to content

Commit 4d5ed34

Browse files
committed
Fixup test names
1 parent c1d50ec commit 4d5ed34

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/models/term_test.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ class TermTest < ActiveSupport::TestCase
325325
assert_equal categorized_count, Term.categorized.count
326326
end
327327

328-
test 'categorization can handle suggested_patterns with a category' do
328+
test 'categorization can handle suggested_resources with a category' do
329329
categorization_count = Categorization.count
330330

331331
t = terms('web_of_knowledge')
@@ -335,7 +335,7 @@ class TermTest < ActiveSupport::TestCase
335335
assert_operator(categorization_count, :<, Categorization.count)
336336
end
337337

338-
test 'categorization can handle suggested_patterns with NO category' do
338+
test 'categorization can handle suggested_resources with NO category' do
339339
categorization_count = Categorization.count
340340

341341
t = terms('nobel_laureate')
@@ -345,7 +345,7 @@ class TermTest < ActiveSupport::TestCase
345345
assert_equal(categorization_count, Categorization.count)
346346
end
347347

348-
test 'categorization can handle suggested_resources with a category' do
348+
test 'categorization can handle suggested_patterns with a category' do
349349
categorization_count = Categorization.count
350350

351351
t = Term.new(phrase: 'ISO 9001')
@@ -355,7 +355,7 @@ class TermTest < ActiveSupport::TestCase
355355
assert_operator(categorization_count, :<, Categorization.count)
356356
end
357357

358-
test 'categorization can handle suggested_resources with NO category' do
358+
test 'categorization can handle suggested_patterns with NO category' do
359359
categorization_count = Categorization.count
360360

361361
t = Term.new(phrase: 'ASTM 9001')

0 commit comments

Comments
 (0)