Fixed unit test
This commit is contained in:
parent
41df561a67
commit
b080e60a77
3 changed files with 11 additions and 11 deletions
|
|
@ -305,13 +305,13 @@ export default {
|
|||
await this.dispatchStoreAction(
|
||||
storeActions.SAVE_SERVICE_LOCATION,
|
||||
{
|
||||
address: null,
|
||||
address2: null,
|
||||
city: null,
|
||||
address: "",
|
||||
address2: "",
|
||||
city: "",
|
||||
state: resultMap.serviceZipValidationResponse.state,
|
||||
zipCode: this.serviceZipCode,
|
||||
zipCodeCtu: resultMap.serviceZipValidationResponse.zipCodeCtu,
|
||||
appointmentType: null,
|
||||
appointmentType: "",
|
||||
isVehicleProtected: null,
|
||||
},
|
||||
false
|
||||
|
|
|
|||
|
|
@ -361,9 +361,9 @@ export default {
|
|||
return store.getters.order.serviceLocation.provider;
|
||||
},
|
||||
resetMobileLocation() {
|
||||
this.streetAddress = null;
|
||||
this.apartmentNumberOrBusinessName = null;
|
||||
this.city = null;
|
||||
this.streetAddress = "";
|
||||
this.apartmentNumberOrBusinessName = "";
|
||||
this.city = "";
|
||||
|
||||
this.isVehicleProtected = null;
|
||||
},
|
||||
|
|
|
|||
|
|
@ -325,13 +325,13 @@ export default {
|
|||
await this.dispatchStoreAction(
|
||||
storeActions.SAVE_SERVICE_ZIP_CODE_INFO,
|
||||
{
|
||||
address: null,
|
||||
address2: null,
|
||||
city: null,
|
||||
address: "",
|
||||
address2: "",
|
||||
city: "",
|
||||
state: resultMap.zipCodeData.state,
|
||||
zipCode: this.serviceZipCode,
|
||||
zipCodeCtu: resultMap.zipCodeData.zipCodeCtu,
|
||||
appointmentType: null,
|
||||
appointmentType: "",
|
||||
isVehicleProtected: null,
|
||||
},
|
||||
false
|
||||
|
|
|
|||
Loading…
Reference in a new issue