mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 02:50:02 -03:30
Fixes pathing after aliases removed
This commit is contained in:
parent
67b826b438
commit
da1a19ce88
@ -7,7 +7,7 @@ import scmCredential from './data.scmCredential.json';
|
||||
import credentialTypes from './data.credentialTypes.json';
|
||||
import CredentialForm from './CredentialForm';
|
||||
|
||||
jest.mock('@api');
|
||||
jest.mock('../../../api');
|
||||
|
||||
describe('<CredentialForm />', () => {
|
||||
let wrapper;
|
||||
|
||||
@ -3,9 +3,12 @@ import { withI18n } from '@lingui/react';
|
||||
import { t } from '@lingui/macro';
|
||||
import { useField } from 'formik';
|
||||
import { FileUpload, FormGroup } from '@patternfly/react-core';
|
||||
import FormField from '@components/FormField';
|
||||
import { FormColumnLayout, FormFullWidthLayout } from '@components/FormLayout';
|
||||
import { required } from '@util/validators';
|
||||
import FormField from '../../../../components/FormField';
|
||||
import {
|
||||
FormColumnLayout,
|
||||
FormFullWidthLayout,
|
||||
} from '../../../../components/FormLayout';
|
||||
import { required } from '../../../../util/validators';
|
||||
|
||||
const GoogleComputeEngineSubForm = ({ i18n }) => {
|
||||
const [fileError, setFileError] = useState(null);
|
||||
|
||||
@ -1,5 +1,3 @@
|
||||
export {
|
||||
default as GoogleComputeEngineSubForm,
|
||||
} from './GoogleComputeEngineSubForm';
|
||||
export { default as GoogleComputeEngineSubForm } from './GoogleComputeEngineSubForm';
|
||||
export { default as ManualSubForm } from './ManualSubForm';
|
||||
export { default as SourceControlSubForm } from './SourceControlSubForm';
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user