@@ -63,10 +63,10 @@ public void constructFailBadUrl200() throws Exception {
63
63
// this test is fragile, the exception message might need tweaking
64
64
final String text = "<!doctype html><html lang=\" en\" ><head>"
65
65
+ "<script async src=\" https://www.googletagmanager.com/gtag/js?..." ;
66
- final String err = "Failed reading from auth url https://ci.kbase.us/services/authx / "
66
+ final String err = "Failed reading from auth url https://ci.kbase.us/service/auth / "
67
67
+ "with response code 200 - response is not JSON: " + text ;
68
68
assertThat ("text is too long" , text .length (), is (100 ));
69
- failConstruct (new URI ("https://ci.kbase.us/services/authx /" ), new AuthException (err ));
69
+ failConstruct (new URI ("https://ci.kbase.us/service/auth /" ), new AuthException (err ));
70
70
assertThat ("no logs" , LOGS .isEmpty (), is (true ));
71
71
}
72
72
@@ -143,9 +143,6 @@ public void validateToken() throws Exception {
143
143
assertThat ("both tokens are the same" , token1 .equals (token2 ), is (false ));
144
144
assertThat ("both users are the same" , user1 .equals (user2 ), is (false ));
145
145
146
- System .out .println ("user1: " + user1 );
147
- System .out .println ("user2: " + user2 );
148
-
149
146
final AuthClient c = AuthClient .from (new URI (TestCommon .getAuthURI ()));
150
147
151
148
// First time from service
0 commit comments