Skip to content

Commit 2c26280

Browse files
committed
remove newline
1 parent c5a16b5 commit 2c26280

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

java/test/org/openqa/selenium/CookieImplementationTest.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ public void testCannotGetCookiesWithPathDifferingOnlyInCase() {
227227
}
228228

229229
@Test
230-
231230
public void testShouldNotGetCookieOnDifferentDomain() {
232231
assumeTrue(domainHelper.checkHasValidAlternateHostname());
233232

@@ -280,7 +279,6 @@ void testShouldBeAbleToIncludeLeadingPeriodInDomainName() {
280279
}
281280

282281
@Test
283-
284282
@NotWorkingInRemoteBazelBuilds(FIREFOX)
285283
public void testShouldBeAbleToSetDomainToTheCurrentDomain() throws Exception {
286284
URI url = new URI(driver.getCurrentUrl());
@@ -295,7 +293,6 @@ public void testShouldBeAbleToSetDomainToTheCurrentDomain() throws Exception {
295293
}
296294

297295
@Test
298-
299296
@NotWorkingInRemoteBazelBuilds(CHROME)
300297
@NotWorkingInRemoteBazelBuilds(EDGE)
301298
@NotWorkingInRemoteBazelBuilds(FIREFOX)
@@ -327,7 +324,6 @@ public void testShouldWalkThePathToDeleteACookie() {
327324
}
328325

329326
@Test
330-
331327
@NotWorkingInRemoteBazelBuilds(FIREFOX)
332328
public void testShouldIgnoreThePortNumberOfTheHostWhenSettingTheCookie() throws Exception {
333329
URI uri = new URI(driver.getCurrentUrl());
@@ -343,7 +339,6 @@ public void testShouldIgnoreThePortNumberOfTheHostWhenSettingTheCookie() throws
343339
}
344340

345341
@Test
346-
347342
@NotWorkingInRemoteBazelBuilds(CHROME)
348343
@NotWorkingInRemoteBazelBuilds(EDGE)
349344
@NotWorkingInRemoteBazelBuilds(FIREFOX)
@@ -374,7 +369,6 @@ public void testCookieEqualityAfterSetAndGet() {
374369
}
375370

376371
@Test
377-
378372
public void testRetainsCookieExpiry() {
379373
Cookie addedCookie =
380374
new Cookie.Builder("fish", "cod")
@@ -461,7 +455,6 @@ public void testRetainsHttpOnlyFlag() {
461455
}
462456

463457
@Test
464-
465458
public void testSettingACookieThatExpiredInThePast() {
466459
long expires = System.currentTimeMillis() - 1000;
467460
Cookie cookie = new Cookie.Builder("expired", "yes").expiresOn(new Date(expires)).build();
@@ -474,7 +467,6 @@ public void testSettingACookieThatExpiredInThePast() {
474467
}
475468

476469
@Test
477-
478470
public void testCanSetCookieWithoutOptionalFieldsSet() {
479471
String key = generateUniqueKey();
480472
String value = "foo";
@@ -487,7 +479,6 @@ public void testCanSetCookieWithoutOptionalFieldsSet() {
487479
}
488480

489481
@Test
490-
491482
public void testDeleteNotExistedCookie() {
492483
String key = generateUniqueKey();
493484
assertCookieIsNotPresentWithName(key);
@@ -628,7 +619,6 @@ private void addCookieOnServerSide(Cookie cookie) {
628619
}
629620

630621
@Test
631-
632622
public void deleteAllCookies() {
633623
assumeTrue(domainHelper.checkHasValidAlternateHostname());
634624

0 commit comments

Comments
 (0)