File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
hedera-node/test-clients/src/main/java/com/hedera/services/bdd/suites/fees Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ static void beforeAll(@NonNull final TestLifecycle testLifecycle) {
7070 testLifecycle .overrideInClass (Map .of ("fees.simpleFeesEnabled" , "true" ));
7171 }
7272
73- public static Stream <DynamicTest > runBeforeAfter (@ NonNull final SpecOperation ... ops ) {
73+ static Stream <DynamicTest > runBeforeAfter (@ NonNull final SpecOperation ... ops ) {
7474 List <SpecOperation > opsList = new ArrayList <>();
7575 opsList .add (overriding ("fees.simpleFeesEnabled" , "false" ));
7676 opsList .addAll (Arrays .asList (ops ));
@@ -79,7 +79,7 @@ public static Stream<DynamicTest> runBeforeAfter(@NonNull final SpecOperation...
7979 return hapiTest (opsList .toArray (new SpecOperation [opsList .size ()]));
8080 }
8181
82- public static double ucents_to_USD (double amount ) {
82+ static double ucents_to_USD (double amount ) {
8383 return amount / 100_000.0 ;
8484 }
8585
You can’t perform that action at this time.
0 commit comments