Skip to content

Commit c78ea5a

Browse files
committed
Merge pull request #31 from robertgates55/underscore
Changed stepStart and stepFinish to __stepStart and __stepFinish
2 parents afe056e + 7b6c123 commit c78ea5a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.frameworkium</groupId>
77
<artifactId>Frameworkium-core</artifactId>
8-
<version>1.1.6</version>
8+
<version>1.1.7</version>
99

1010
<name>Frameworkium-core</name>
1111
<description>

src/main/java/com/frameworkium/tests/internal/BaseTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,11 @@ public static ScreenshotCapture getCapture() {
201201
return capture.get();
202202
}
203203

204-
public void stepStart(String stepName){
204+
public void __stepStart(String stepName){
205205
Allure.LIFECYCLE.fire(new StepStartedEvent(stepName));
206206
}
207207

208-
public void stepFinish(){
208+
public void __stepFinish(){
209209
Allure.LIFECYCLE.fire(new StepFinishedEvent());
210210
}
211211
}

0 commit comments

Comments
 (0)