Skip to content

Commit

Permalink
[java] Changing @ignore to @NotYetImplemented for some non-destructiv…
Browse files Browse the repository at this point in the history
…e failures
  • Loading branch information
barancev committed Jan 20, 2019
1 parent 68119e0 commit 2e86040
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public void testGetCookiesInAFrame() {
}

@Test
@Ignore(CHROME)
@NotYetImplemented(CHROME)
public void testCannotGetCookiesWithPathDifferingOnlyInCase() {
String cookieName = "fish";
Cookie cookie = new Cookie.Builder(cookieName, "cod").path("/Common/animals").build();
Expand All @@ -236,7 +236,7 @@ public void testShouldNotGetCookieOnDifferentDomain() {
}

@Test
@Ignore(CHROME)
@NotYetImplemented(CHROME)
public void testShouldBeAbleToAddToADomainWhichIsRelatedToTheCurrentDomain() {
String cookieName = "name";
assertCookieIsNotPresentWithName(cookieName);
Expand Down Expand Up @@ -425,7 +425,7 @@ public void canHandleHttpOnlyCookie() {
}

@Test
@Ignore(CHROME)
@NotYetImplemented(CHROME)
@Ignore(SAFARI)
public void testRetainsHttpOnlyFlag() {
Cookie addedCookie =
Expand Down

0 comments on commit 2e86040

Please sign in to comment.