Improved checks.
This commit is contained in:
parent
85ac291363
commit
df399a5c07
1 changed files with 3 additions and 1 deletions
|
@ -389,7 +389,9 @@ class ActivityStreamTest < ActiveSupport::TestCase
|
||||||
assert_equal( check_item[:type], item['type'] )
|
assert_equal( check_item[:type], item['type'] )
|
||||||
assert_equal( check_item[:o_id], item['o_id'] )
|
assert_equal( check_item[:o_id], item['o_id'] )
|
||||||
else
|
else
|
||||||
assert_not_equal( check_item[:object], item['object'] )
|
if check_item[:object] == item['object'] && check_item[:type] == item['type'] && check_item[:o_id] == item['o_id']
|
||||||
|
assert( false, "entry should not exist #{ item['object'] }/#{ item['type'] }/#{ item['o_id'] }" )
|
||||||
|
end
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue