update serialize tests for removed ids

master
Oliver Tonnhofer 2013-06-05 08:04:53 +02:00
parent f31323f975
commit 9f48dbbab9
1 changed files with 0 additions and 9 deletions

View File

@ -26,9 +26,6 @@ func TestMarshalNode(t *testing.T) {
data, _ := MarshalNode(node)
node, _ = UnmarshalNode(data)
if node.Id != 12345 {
t.Error("id does not match")
}
if node.Tags["name"] != "test" {
t.Error("name tag does not match")
@ -53,9 +50,6 @@ func TestMarshalWay(t *testing.T) {
data, _ := MarshalWay(way)
way, _ = UnmarshalWay(data)
if way.Id != 12345 {
t.Error("id does not match")
}
if way.Tags["name"] != "test" {
t.Error("name tag does not match")
@ -85,9 +79,6 @@ func TestMarshalRelation(t *testing.T) {
data, _ := MarshalRelation(rel)
rel, _ = UnmarshalRelation(data)
if rel.Id != 12345 {
t.Error("id does not match")
}
if rel.Tags["name"] != "test" {
t.Error("name tag does not match")