fixing the tests I broke earlier due to the fixture changes

This commit is contained in:
Shaun McDonald 2009-05-06 17:56:10 +00:00
parent d10931effa
commit e509850554
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ class ApiControllerTest < ActionController::TestCase
end
def test_tracepoints
point = gpx_files(:first_trace_file)
point = gpx_files(:public_trace_file)
minlon = point.longitude-0.1
minlat = point.latitude-0.1
maxlon = point.longitude+0.1

View file

@ -4,7 +4,7 @@ class TraceTest < Test::Unit::TestCase
api_fixtures
def test_trace_count
assert_equal 1, Trace.count
assert_equal 2, Trace.count
end
end