Skip to content

Commit

Permalink
Merge branch 'main' into UpdateReadME
Browse files Browse the repository at this point in the history
  • Loading branch information
MustafaAgamy committed May 23, 2024
2 parents d97cc94 + c750125 commit f1688fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.shafthq</groupId>
<artifactId>SHAFT_ENGINE</artifactId>
<version>8.2.20240411</version> <!-- UPDATE com.shaft.properties.internal > Internal -->
<version>8.2.20240523</version> <!-- UPDATE com.shaft.properties.internal > Internal -->
<name>${project.groupId}:${project.artifactId}</name>
<description>SHAFT is a unified test automation engine. Powered by best-in-class frameworks, SHAFT provides a
wizard-like syntax to drive your automation efficiently, maximize your ROI, and minimize your learning curve.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/shaft/properties/internal/Internal.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
})
public interface Internal extends EngineProperties<Internal> {
@Key("shaftEngineVersion")
@DefaultValue("8.2.20240411")
@DefaultValue("8.2.20240523")
String shaftEngineVersion();

@Key("watermarkImagePath")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

import com.shaft.cli.FileActions;
import com.shaft.driver.SHAFT;
import com.shaft.tools.io.ReportManager;
import com.shaft.tools.io.internal.ReportManagerHelper;
import com.shaft.validation.ValidationEnums;
import org.apache.logging.log4j.Level;
import org.openqa.selenium.By;
import org.openqa.selenium.support.locators.RelativeLocator;
import org.testng.Assert;
Expand Down Expand Up @@ -97,7 +97,7 @@ public static String convertBase64(String text) {
*/
public static int compareTwoObjects(Object expectedValue, Object actualValue, Object comparisonType,
Boolean validationType) {
ReportManager.logDiscrete("Expected \"" + expectedValue + "\", and actual \"" + actualValue + "\"");
ReportManagerHelper.logDiscrete("Expected \"" + expectedValue + "\", and actual \"" + actualValue + "\"", Level.DEBUG);
if ("null".equals(expectedValue)) {
expectedValue = null;
}
Expand Down

0 comments on commit f1688fc

Please sign in to comment.