Skip to content

Commit

Permalink
fix: update serenity core to rc.5, updating name of function
Browse files Browse the repository at this point in the history
  • Loading branch information
YamStranger committed Feb 4, 2016
1 parent 8c05583 commit 290e137
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ext {
if (!project.hasProperty("bintrayApiKey")) {
bintrayApiKey = ''
}
serenityCoreVersion = '1.1.25-rc.4'
serenityCoreVersion = '1.1.25-rc.5'

if (!project.hasProperty("bintrayApiKey")) {
bintrayApiKey = ''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ private boolean hasSameName(Story story, String givenStoryName) {
Map<Story, WebDriver> drivers = Maps.newConcurrentMap();

private void configureDriver(Story story) {
StepEventBus.getEventBus().setUniqueSession(systemConfiguration.getUseUniqueBrowser());
StepEventBus.getEventBus().setUniqueSession(systemConfiguration.shouldUseAUniqueBrowser());
String requestedDriver = getRequestedDriver(story.getMeta());
if (StringUtils.isNotEmpty(requestedDriver)) {
ThucydidesWebDriverSupport.initialize(requestedDriver);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public void should_be_able_to_set_thucydides_properties_in_the_base_test() throw

assertThat(story.getSystemConfiguration().getBaseUrl(), is("some-base-url"));
assertThat(story.getSystemConfiguration().getElementTimeout(), is(5));
assertThat(story.getSystemConfiguration().getUseUniqueBrowser(), is(true));
assertThat(story.getSystemConfiguration().shouldUseAUniqueBrowser(), is(true));
}

@Test(expected = Throwable.class)
Expand Down

0 comments on commit 290e137

Please sign in to comment.