@@ -47,9 +47,9 @@ describe('DestinationCreate', () => {
4747 const destinationNameInput = screen . getByLabelText ( 'Destination Name' ) ;
4848 await userEvent . type ( destinationNameInput , 'Test' ) ;
4949 const hostInput = screen . getByLabelText ( 'Host' ) ;
50- await userEvent . type ( hostInput , 'Test ' ) ;
50+ await userEvent . type ( hostInput , 'test ' ) ;
5151 const bucketInput = screen . getByLabelText ( 'Bucket' ) ;
52- await userEvent . type ( bucketInput , 'Test ' ) ;
52+ await userEvent . type ( bucketInput , 'test ' ) ;
5353 const accessKeyIDInput = screen . getByLabelText ( 'Access Key ID' ) ;
5454 await userEvent . type ( accessKeyIDInput , 'Test' ) ;
5555 const secretAccessKeyInput = screen . getByLabelText ( 'Secret Access Key' ) ;
@@ -58,8 +58,8 @@ describe('DestinationCreate', () => {
5858 await userEvent . type ( logPathPrefixInput , 'Test' ) ;
5959
6060 expect ( destinationNameInput ) . toHaveValue ( 'Test' ) ;
61- expect ( hostInput ) . toHaveValue ( 'Test ' ) ;
62- expect ( bucketInput ) . toHaveValue ( 'Test ' ) ;
61+ expect ( hostInput ) . toHaveValue ( 'test ' ) ;
62+ expect ( bucketInput ) . toHaveValue ( 'test ' ) ;
6363 expect ( accessKeyIDInput ) . toHaveValue ( 'Test' ) ;
6464 expect ( secretAccessKeyInput ) . toHaveValue ( 'Test' ) ;
6565 expect ( logPathPrefixInput ) . toHaveValue ( 'Test' ) ;
@@ -114,9 +114,9 @@ describe('DestinationCreate', () => {
114114 const destinationNameInput = screen . getByLabelText ( 'Destination Name' ) ;
115115 await userEvent . type ( destinationNameInput , 'Test' ) ;
116116 const hostInput = screen . getByLabelText ( 'Host' ) ;
117- await userEvent . type ( hostInput , 'Test ' ) ;
117+ await userEvent . type ( hostInput , 'test ' ) ;
118118 const bucketInput = screen . getByLabelText ( 'Bucket' ) ;
119- await userEvent . type ( bucketInput , 'Test ' ) ;
119+ await userEvent . type ( bucketInput , 'test ' ) ;
120120 const accessKeyIDInput = screen . getByLabelText ( 'Access Key ID' ) ;
121121 await userEvent . type ( accessKeyIDInput , 'Test' ) ;
122122 const secretAccessKeyInput = screen . getByLabelText ( 'Secret Access Key' ) ;
0 commit comments