Qualify SCALE in tests

This commit is contained in:
Tom Hughes 2014-04-25 18:40:57 +01:00
parent b369d786db
commit a5b296a298
2 changed files with 8 additions and 8 deletions

View file

@ -49,8 +49,8 @@ class NodeTest < ActiveSupport::TestCase
def valid_node_test(nod)
node = current_nodes(nod)
dbnode = Node.find(node.id)
assert_equal dbnode.lat, node.latitude.to_f/SCALE
assert_equal dbnode.lon, node.longitude.to_f/SCALE
assert_equal dbnode.lat, node.latitude.to_f / Node::SCALE
assert_equal dbnode.lon, node.longitude.to_f / Node::SCALE
assert_equal dbnode.changeset_id, node.changeset_id
assert_equal dbnode.timestamp, node.timestamp
assert_equal dbnode.version, node.version
@ -65,8 +65,8 @@ class NodeTest < ActiveSupport::TestCase
def invalid_node_test(nod)
node = current_nodes(nod)
dbnode = Node.find(node.id)
assert_equal dbnode.lat, node.latitude.to_f/SCALE
assert_equal dbnode.lon, node.longitude.to_f/SCALE
assert_equal dbnode.lat, node.latitude.to_f / Node::SCALE
assert_equal dbnode.lon, node.longitude.to_f / Node::SCALE
assert_equal dbnode.changeset_id, node.changeset_id
assert_equal dbnode.timestamp, node.timestamp
assert_equal dbnode.version, node.version

View file

@ -49,8 +49,8 @@ class OldNodeTest < ActiveSupport::TestCase
def valid_node_test(nod)
node = nodes(nod)
dbnode = Node.find(node.node_id)
assert_equal dbnode.lat, node.latitude.to_f/SCALE
assert_equal dbnode.lon, node.longitude.to_f/SCALE
assert_equal dbnode.lat, node.latitude.to_f / OldNode::SCALE
assert_equal dbnode.lon, node.longitude.to_f / OldNode::SCALE
assert_equal dbnode.changeset_id, node.changeset_id
assert_equal dbnode.version, node.version
assert_equal dbnode.visible, node.visible
@ -65,8 +65,8 @@ class OldNodeTest < ActiveSupport::TestCase
def invalid_node_test(nod)
node = nodes(nod)
dbnode = Node.find(node.node_id)
assert_equal dbnode.lat, node.latitude.to_f/SCALE
assert_equal dbnode.lon, node.longitude.to_f/SCALE
assert_equal dbnode.lat, node.latitude.to_f / OldNode::SCALE
assert_equal dbnode.lon, node.longitude.to_f / OldNode::SCALE
assert_equal dbnode.changeset_id, node.changeset_id
assert_equal dbnode.version, node.version
assert_equal dbnode.visible, node.visible