Skip to content

Commit

Permalink
Update ConfigurationMethod.java - remove extra whitespace in log
Browse files Browse the repository at this point in the history
This change removes an extra whitespace character that is part of a warning message that is logged when static methods are used for Test suite configuration.
  • Loading branch information
goelakash authored and krmahadevan committed Aug 6, 2023
1 parent 04e3e0f commit 1315cff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ private static ITestNGMethod[] createMethods(
"Detected a static method ["
+ method.getQualifiedName()
+ "()]. Static configuration methods can cause "
+ " unexpected behavior.";
+ "unexpected behavior.";
Logger.getLogger(Configuration.class).warn(msg);
}

Expand Down

0 comments on commit 1315cff

Please # to comment.