diff --git a/src/containers/BookingDatesForm/BookingDatesForm.test.js b/src/containers/BookingDatesForm/BookingDatesForm.test.js
index 722062da..0ff5fbf4 100644
--- a/src/containers/BookingDatesForm/BookingDatesForm.test.js
+++ b/src/containers/BookingDatesForm/BookingDatesForm.test.js
@@ -3,7 +3,7 @@ import { shallow } from 'enzyme';
import Decimal from 'decimal.js';
import { types as sdkTypes } from '../../util/sdkLoader';
import { renderShallow, renderDeep } from '../../util/test-helpers';
-import { fakeIntl, fakeFormProps } from '../../util/test-data';
+import { fakeIntl } from '../../util/test-data';
import { LINE_ITEM_NIGHT, TRANSITION_REQUEST } from '../../util/types';
import { dateFromAPIToLocalNoon } from '../../util/dates';
import { BookingBreakdown } from '../../components';
@@ -18,7 +18,6 @@ describe('BookingDatesForm', () => {
it('matches snapshot without selected dates', () => {
const tree = renderShallow(
`;
diff --git a/src/containers/EditListingDescriptionForm/EditListingDescriptionForm.test.js b/src/containers/EditListingDescriptionForm/EditListingDescriptionForm.test.js
index 53069a8e..30ade137 100644
--- a/src/containers/EditListingDescriptionForm/EditListingDescriptionForm.test.js
+++ b/src/containers/EditListingDescriptionForm/EditListingDescriptionForm.test.js
@@ -1,6 +1,6 @@
import React from 'react';
import { renderDeep } from '../../util/test-helpers';
-import { fakeIntl, fakeFormProps } from '../../util/test-data';
+import { fakeIntl } from '../../util/test-data';
import EditListingDescriptionForm from './EditListingDescriptionForm';
const noop = () => null;
@@ -9,7 +9,6 @@ describe('EditListingDescriptionForm', () => {
it('matches snapshot', () => {
const tree = renderDeep(
v}
diff --git a/src/containers/EditListingLocationForm/EditListingLocationForm.test.js b/src/containers/EditListingLocationForm/EditListingLocationForm.test.js
index 305b251d..16be521b 100644
--- a/src/containers/EditListingLocationForm/EditListingLocationForm.test.js
+++ b/src/containers/EditListingLocationForm/EditListingLocationForm.test.js
@@ -1,7 +1,7 @@
// NOTE: renderdeep doesn't work due to Google Maps API integration
import React from 'react';
import { renderShallow } from '../../util/test-helpers';
-import { fakeIntl, fakeFormProps } from '../../util/test-data';
+import { fakeIntl } from '../../util/test-data';
import { EditListingLocationFormComponent } from './EditListingLocationForm';
const noop = () => null;
@@ -10,7 +10,6 @@ describe('EditListingLocationForm', () => {
it('matches snapshot', () => {
const tree = renderShallow(
`;
diff --git a/src/containers/EditListingPhotosForm/EditListingPhotosForm.test.js b/src/containers/EditListingPhotosForm/EditListingPhotosForm.test.js
index 7d469e57..6768060a 100644
--- a/src/containers/EditListingPhotosForm/EditListingPhotosForm.test.js
+++ b/src/containers/EditListingPhotosForm/EditListingPhotosForm.test.js
@@ -1,6 +1,6 @@
import React from 'react';
import { renderShallow } from '../../util/test-helpers';
-import { fakeIntl, fakeFormProps } from '../../util/test-data';
+import { fakeIntl } from '../../util/test-data';
import { EditListingPhotosFormComponent } from './EditListingPhotosForm';
const noop = () => null;
@@ -9,7 +9,6 @@ describe('EditListingPhotosForm', () => {
it('matches snapshot', () => {
const tree = renderShallow(
`;
diff --git a/src/containers/EditListingPoliciesForm/EditListingPoliciesForm.test.js b/src/containers/EditListingPoliciesForm/EditListingPoliciesForm.test.js
index a6a5bf26..5f1ea422 100644
--- a/src/containers/EditListingPoliciesForm/EditListingPoliciesForm.test.js
+++ b/src/containers/EditListingPoliciesForm/EditListingPoliciesForm.test.js
@@ -1,7 +1,7 @@
// NOTE: renderdeep doesn't work due to Google Maps API integration
import React from 'react';
import { renderShallow } from '../../util/test-helpers';
-import { fakeIntl, fakeFormProps } from '../../util/test-data';
+import { fakeIntl } from '../../util/test-data';
import { EditListingPoliciesFormComponent } from './EditListingPoliciesForm';
const noop = () => null;
@@ -10,7 +10,6 @@ describe('EditListingPoliciesForm', () => {
it('matches snapshot', () => {
const tree = renderShallow(
`;
diff --git a/src/containers/EditListingPricingForm/EditListingPricingForm.test.js b/src/containers/EditListingPricingForm/EditListingPricingForm.test.js
index 874ca1aa..d7935502 100644
--- a/src/containers/EditListingPricingForm/EditListingPricingForm.test.js
+++ b/src/containers/EditListingPricingForm/EditListingPricingForm.test.js
@@ -1,6 +1,6 @@
import React from 'react';
import { renderDeep } from '../../util/test-helpers';
-import { fakeIntl, fakeFormProps } from '../../util/test-data';
+import { fakeIntl } from '../../util/test-data';
import EditListingPricingForm from './EditListingPricingForm';
const noop = () => null;
@@ -9,7 +9,6 @@ describe('EditListingPricingForm', () => {
it('matches snapshot', () => {
const tree = renderDeep(
v}