@@ -419,7 +419,7 @@ func (s *ServerTestSuite) Test_ServeHTTP_ReturnsJsonWithReqRep_WhenPresent() {
419419 search := "search"
420420 replace := "replace"
421421 url := fmt .Sprintf (
422- s .ReconfigureUrl + "&reqRepSearch=" + search + "&reqRepReplace=" + replace ,
422+ s .ReconfigureUrl + "&reqRepSearch=" + search + "&reqRepReplace=" + replace ,
423423 )
424424 req , _ := http .NewRequest ("GET" , url , nil )
425425 expected , _ := json .Marshal (Response {
@@ -449,7 +449,7 @@ func (s *ServerTestSuite) Test_ServeHTTP_ReturnsJsonWithTemplatePaths_WhenPresen
449449 )
450450 req , _ := http .NewRequest ("GET" , url , nil )
451451 expected , _ := json .Marshal (Response {
452- Status : "OK" ,
452+ Status : "OK" ,
453453 ServiceName : s .ServiceName ,
454454 ServiceColor : s .ServiceColor ,
455455 ServicePath : s .ServicePath ,
@@ -465,9 +465,9 @@ func (s *ServerTestSuite) Test_ServeHTTP_ReturnsJsonWithTemplatePaths_WhenPresen
465465}
466466
467467func (s * ServerTestSuite ) Test_ServeHTTP_ReturnsJsonWithUsers_WhenPresent () {
468- users := []User {
469- { Username : "user1" , Password : "pass1" },
470- { Username : "user2" , Password : "pass2" },
468+ users := []User {
469+ {Username : "user1" , Password : "pass1" },
470+ {Username : "user2" , Password : "pass2" },
471471 }
472472 req , _ := http .NewRequest ("GET" , s .ReconfigureUrl + "&users=user1:pass1,user2:pass2" , nil )
473473 expected , _ := json .Marshal (Response {
0 commit comments