diff --git a/src/test/city.js b/src/test/city.js
index ff8612fd9f27412d92a4e4626b7c777fb416efa1..904fb2f7b112a07d835f7881f948cbd086a9e9f1 100644
--- a/src/test/city.js
+++ b/src/test/city.js
@@ -34,8 +34,7 @@ describe('request cities', () => {
                 res.should.be.json;
                 res.body.should.have.property('result');
                 res.body.result.should.be.a('array');
-                res.body.result[0].should.have.property('pk_cod_ibge');
-                res.body.result[0].should.have.property('fk_estado_id');
+                res.body.result[0].should.have.property('pk_municipio_id');
                 res.body.result[0].should.have.property('nome');
                 done();
             });
@@ -49,8 +48,7 @@ describe('request cities', () => {
                 res.should.be.json;
                 res.body.should.have.property('result');
                 res.body.result.should.be.a('array');
-                res.body.result[0].should.have.property('pk_cod_ibge');
-                res.body.result[0].should.have.property('fk_estado_id');
+                res.body.result[0].should.have.property('pk_municipio_id');
                 res.body.result[0].should.have.property('nome');
                 done();
             });
@@ -64,8 +62,7 @@ describe('request cities', () => {
                 res.should.be.json;
                 res.body.should.have.property('result');
                 res.body.result.should.be.a('array');
-                res.body.result[0].should.have.property('pk_cod_ibge');
-                res.body.result[0].should.have.property('fk_estado_id');
+                res.body.result[0].should.have.property('pk_municipio_id');
                 res.body.result[0].should.have.property('nome');
                 done();
             })
@@ -79,7 +76,7 @@ describe('request cities', () => {
                 res.should.be.json;
                 res.body.should.have.property('result');
                 res.body.result.should.be.a('array');
-                res.body.result[0].should.have.property('pk_cod_ibge');
+                res.body.result[0].should.have.property('pk_municipio_id');
                 res.body.result[0].should.have.property('nome');
                 done();
             });