]> git.openstreetmap.org Git - rails.git/blobdiff - test/unit/tracetag_test.rb
Update to iD v1.3.6
[rails.git] / test / unit / tracetag_test.rb
index 2112e589190725a3c125b94039861d18608bf31a..473071088be1efa13b062045d3c81362a938cd05 100644 (file)
@@ -4,7 +4,7 @@ class TracetagTest < ActiveSupport::TestCase
   api_fixtures
   
   def test_tracetag_count
-    assert_equal 1, Tracetag.count
+    assert_equal 4, Tracetag.count
   end
 
   def test_validations
@@ -24,8 +24,8 @@ class TracetagTest < ActiveSupport::TestCase
 private
 
   def tracetag_valid(attrs, result = true)
-    entry = Tracetag.new(gpx_file_tags(:first_trace_1).attributes, :without_protection => true)
-    entry.assign_attributes(attrs, :without_protection => true)
+    entry = Tracetag.new(gpx_file_tags(:first_trace_1).attributes)
+    entry.assign_attributes(attrs)
     assert_equal result, entry.valid?, "Expected #{attrs.inspect} to be #{result}"
   end
 end