Commit 77ee15d0896424d4c02de0a61ad8922e5b38304c
Exists in
staging
and in
7 other branches
Merge branch 'fix_lazy_queries' into stable
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
test/functional/manage_products_controller_test.rb
| ... | ... | @@ -150,7 +150,7 @@ class ManageProductsControllerTest < ActionController::TestCase |
| 150 | 150 | category2 = fast_create(ProductCategory, :name => 'Category 2', :parent_id => category1.id) |
| 151 | 151 | category3 = fast_create(ProductCategory, :name => 'Category 3', :parent_id => category2.id) |
| 152 | 152 | get :new, :profile => @enterprise.identifier |
| 153 | - assert_tag :tag => 'select', :attributes => { :id => 'category_id' }, :descendant => { :tag => 'option', :content => category1.name } | |
| 153 | + assert_tag :tag => 'select', :attributes => { :id => 'category_id' }, :descendant => { :tag => 'option', :content => category1.name + " »" } | |
| 154 | 154 | end |
| 155 | 155 | |
| 156 | 156 | should "create new product categorized" do | ... | ... |