File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ async function run() {
105
105
ci : false ,
106
106
verbose : false
107
107
} )
108
- const [ namespace , _method ] = api . split ( '.' )
108
+ const namespace = getNamespace ( api )
109
109
// Asked to validate a specific API, so we only store that one
110
110
reports . set ( api , report . get ( namespace ) [ 0 ] )
111
111
}
@@ -120,7 +120,7 @@ async function run() {
120
120
verbose : false
121
121
} )
122
122
123
- const [ namespace , _method ] = api . split ( '.' )
123
+ const namespace = getNamespace ( api )
124
124
// Asked to validate a specific API, so we only store that one
125
125
reports . set ( api , report . get ( namespace ) [ 0 ] )
126
126
}
@@ -162,7 +162,6 @@ function getApi (file) {
162
162
return file . split ( '/' ) . slice ( 1 , 3 ) . filter ( s => ! privateNames . includes ( s ) ) . filter ( Boolean ) . join ( '.' )
163
163
}
164
164
165
-
166
165
function findBaselineReport ( apiName , baselineValidation ) {
167
166
const [ namespace , method ] = apiName . split ( '.' )
168
167
You can’t perform that action at this time.
0 commit comments