@@ -54,7 +54,7 @@ void givenV20PriceShouldHoldMonthlyPriceV11() {
5454
5555 Yaml yaml = new Yaml ();
5656
57- try (FileInputStream fileInputStream = new FileInputStream ("src/main /resources/updating/v11-v20/price-holds-monthlyPrice.yml" )) {
57+ try (FileInputStream fileInputStream = new FileInputStream ("src/test /resources/updating/v11-v20/price-holds-monthlyPrice.yml" )) {
5858 Map <String ,Object > configFile = yaml .load (fileInputStream );
5959 YamlUpdater .update (configFile );
6060 Map <String ,Object > plans = (Map <String , Object >) configFile .get ("plans" );
@@ -70,7 +70,7 @@ void givenV20PriceShouldHoldV11AnnualPriceWhenMonthlyPriceIsNull() {
7070
7171 Yaml yaml = new Yaml ();
7272
73- try (FileInputStream fileInputStream = new FileInputStream ("src/main /resources/updating/v11-v20/price-holds-annualPrice.yml" )) {
73+ try (FileInputStream fileInputStream = new FileInputStream ("src/test /resources/updating/v11-v20/price-holds-annualPrice.yml" )) {
7474 Map <String ,Object > configFile = yaml .load (fileInputStream );
7575 YamlUpdater .update (configFile );
7676 Map <String ,Object > plans = (Map <String , Object >) configFile .get ("plans" );
@@ -85,7 +85,7 @@ void givenV20PriceShouldHoldV11AnnualPriceWhenMonthlyPriceIsNull() {
8585 void givenInvalidTypeInMonthlyPriceShouldThrow () {
8686 Yaml yaml = new Yaml ();
8787
88- try (FileInputStream fileInputStream = new FileInputStream ("src/main /resources/updating/v11-v20/monthlyPrice-is-boolean.yml" )) {
88+ try (FileInputStream fileInputStream = new FileInputStream ("src/test /resources/updating/v11-v20/monthlyPrice-is-boolean.yml" )) {
8989 Map <String ,Object > configFile = yaml .load (fileInputStream );
9090 YamlUpdater .update (configFile );
9191 fail ();
0 commit comments