@@ -69,14 +69,11 @@ describe('Automl Import Dataset Test', () => {
69
69
}
70
70
}
71
71
72
- it ( 'should create a dataset' , async function ( ) {
72
+ it ( 'should create a dataset' , async function ( ) {
73
73
this . retries ( 5 ) ;
74
74
await delay ( this . test ) ;
75
75
const projectId = await client . getProjectId ( ) ;
76
- const displayName = `test_${ uuid
77
- . v4 ( )
78
- . replace ( / - / g, '_' )
79
- . substring ( 0 , 26 ) } `;
76
+ const displayName = `test_${ uuid . v4 ( ) . replace ( / - / g, '_' ) . substring ( 0 , 26 ) } ` ;
80
77
const request = {
81
78
parent : client . locationPath ( projectId , LOCATION ) ,
82
79
dataset : {
@@ -94,7 +91,7 @@ describe('Automl Import Dataset Test', () => {
94
91
[ response . name . split ( '/' ) . length - 1 ] . split ( '\n' ) [ 0 ] ;
95
92
} ) ;
96
93
97
- it ( 'should import dataset' , async function ( ) {
94
+ it ( 'should import dataset' , async function ( ) {
98
95
this . retries ( 5 ) ;
99
96
await delay ( this . test ) ;
100
97
const projectId = await client . getProjectId ( ) ;
@@ -105,7 +102,7 @@ describe('Automl Import Dataset Test', () => {
105
102
assert . match ( import_output , / D a t a s e t i m p o r t e d / ) ;
106
103
} ) ;
107
104
108
- it ( 'should delete created dataset' , async function ( ) {
105
+ it ( 'should delete created dataset' , async function ( ) {
109
106
this . retries ( 5 ) ;
110
107
await delay ( this . test ) ;
111
108
const projectId = await client . getProjectId ( ) ;
0 commit comments