Fix Pebble IT

pull/61/head
Richard Körber 2018-02-10 17:32:17 +01:00
parent 137c2c7dd0
commit 976056b6e7
No known key found for this signature in database
GPG Key ID: AAB9FD19C78AA3E0
1 changed files with 1 additions and 4 deletions

View File

@ -52,9 +52,7 @@ public class AccountIT extends PebbleITBase {
// Check registered data // Check registered data
assertThat(acct.getContacts(), contains(URI.create("mailto:acme@example.com"))); assertThat(acct.getContacts(), contains(URI.create("mailto:acme@example.com")));
// TODO PEBBLE: Sends UNKNOWN instead of VALID assertThat(acct.getStatus(), is(Status.VALID));
// assertThat(acct.getStatus(), is(Status.VALID));
assertThat(acct.getTermsOfServiceAgreed(), is(true));
// Bind another Account object // Bind another Account object
// TODO PEBBLE: Not supported yet // TODO PEBBLE: Not supported yet
@ -63,7 +61,6 @@ public class AccountIT extends PebbleITBase {
// assertThat(acct2.getLocation(), is(location)); // assertThat(acct2.getLocation(), is(location));
// assertThat(acct2.getContacts(), contains(URI.create("mailto:acme@example.com"))); // assertThat(acct2.getContacts(), contains(URI.create("mailto:acme@example.com")));
// assertThat(acct2.getStatus(), is(Status.VALID)); // assertThat(acct2.getStatus(), is(Status.VALID));
// assertThat(acct2.getTermsOfServiceAgreed(), is(true));
} }
@Test @Test