diff --git a/client/client/src/address/edit/address-edit.spec.js b/client/client/src/address/edit/address-edit.spec.js
index 14c771a1f..3b9ae5385 100644
--- a/client/client/src/address/edit/address-edit.spec.js
+++ b/client/client/src/address/edit/address-edit.spec.js
@@ -19,38 +19,5 @@ describe('Client', () => {
$state.params.addressId = '1';
controller = $componentController('vnClientAddressEdit', {$state: $state});
}));
-
- it('should define and set address property', () => {
- expect(controller.address.id).toEqual(1);
- });
-
- describe('_observationsEquals', () => {
- it('should return true if two observations are equals independent of control attributes', () => {
- let ob1 = {id: 1, observationTypeFk: 1, description: 'Spiderman rocks', showAddIcon: true};
- let ob2 = {id: 1, observationTypeFk: 1, description: 'Spiderman rocks', showAddIcon: false};
- let equals = controller.equalObservations(ob2, ob1);
-
- expect(equals).toBeTruthy();
- });
-
- it('should return false if two observations are not equals independent of control attributes', () => {
- let ob1 = {id: 1, observationTypeFk: 1, description: 'Spiderman rocks', showAddIcon: true};
- let ob2 = {id: 1, observationTypeFk: 1, description: 'Spiderman sucks', showAddIcon: true};
- let equals = controller.equalObservations(ob2, ob1);
-
- expect(equals).toBeFalsy();
- });
- });
-
- describe('$onInit()', () => {
- it('should perform a GET query to receive the address observations', () => {
- let filter = {where: {addressFk: 1}, include: {relation: 'observationType'}};
- let res = ['some notes'];
- $httpBackend.whenGET(`/client/api/AddressObservations?filter=${JSON.stringify(filter)}`).respond(res);
- $httpBackend.expectGET(`/client/api/AddressObservations?filter=${JSON.stringify(filter)}`);
- controller.$onInit();
- $httpBackend.flush();
- });
- });
});
});
diff --git a/client/client/src/address/edit/index.html b/client/client/src/address/edit/index.html
index dc7218e8e..8ef86e11d 100644
--- a/client/client/src/address/edit/index.html
+++ b/client/client/src/address/edit/index.html
@@ -1,16 +1,29 @@
+