@@ -25,9 +25,9 @@ protected void test(String applicationConfigFileName, String env, String name, P
2525 protected static Stream <Arguments > providerForAllYangModels ()
2626 throws IOException , URISyntaxException {
2727 var outLegacy = providerForYangModels ("legacy" );
28- var outIetf = providerForYangModels ("ietf " );
28+ var outItm = providerForYangModels ("itm " );
2929
30- return Stream .concat (outLegacy , outIetf );
30+ return Stream .concat (outLegacy , outItm );
3131 }
3232
3333 /*** Discover YANG model test cases and provide them as arguments to the parametrized test */
@@ -38,7 +38,7 @@ protected static Stream<Arguments> providerForYangModels(String profile)
3838 // Create a map from the discovered folders in the `test/resources/deployment` folder
3939 // The key is the sub-folder name and the value is a full path to the sub folder
4040 String deploymentFolder =
41- profile .equals ("ietf " ) ? "deployment-ietf-telemetry-message" : "deployment" ;
41+ profile .equals ("itm " ) ? "deployment-ietf-telemetry-message" : "deployment" ;
4242 var yangModels =
4343 Files .list (Path .of (Objects .requireNonNull (loader .getResource (deploymentFolder )).toURI ()))
4444 .filter (Files ::isDirectory )
@@ -57,7 +57,7 @@ protected static Stream<Arguments> providerForYangModels(String profile)
5757 var testFixtures = Files .list (path ).filter (Files ::isDirectory ).toList ();
5858 for (var testPath : testFixtures ) {
5959 for (var env : List .of ("dev" , "test" , "prod" )) {
60- String fileNamePrefix = profile .equals ("ietf " ) ? "application.ietf ." : "application." ;
60+ String fileNamePrefix = profile .equals ("itm " ) ? "application.itm ." : "application." ;
6161
6262 String applicationConfig = fileNamePrefix + env + ".conf" ;
6363 if (loader .getResource (applicationConfig ) != null )
0 commit comments