Skip to content

Commit

Permalink
fix: 테스트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
wonyongChoi05 committed Sep 4, 2023
1 parent 9ffe49e commit 0e42032
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 439 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import org.apache.coyote.Processor;
import org.apache.coyote.http11.request.body.RequestBody;
import org.apache.coyote.http11.request.handler.RequestHandler;
import org.apache.coyote.http11.request.headers.RequestHeader;
import org.apache.coyote.http11.request.header.RequestHeader;
import org.apache.coyote.http11.request.line.RequestLine;
import org.apache.coyote.http11.response.HttpResponseGenerator;
import org.apache.coyote.http11.response.ResponseEntity;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import nextstep.jwp.db.InMemoryUserRepository;
import nextstep.jwp.model.User;
import org.apache.coyote.http11.request.body.RequestBody;
import org.apache.coyote.http11.request.headers.RequestHeader;
import org.apache.coyote.http11.request.header.RequestHeader;
import org.apache.coyote.http11.request.line.RequestLine;
import org.apache.coyote.http11.response.ResponseEntity;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import org.apache.coyote.http11.auth.AuthService;
import org.apache.coyote.http11.request.body.RequestBody;
import org.apache.coyote.http11.request.headers.RequestHeader;
import org.apache.coyote.http11.request.header.RequestHeader;
import org.apache.coyote.http11.request.line.RequestLine;
import org.apache.coyote.http11.response.ResponseEntity;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.apache.coyote.http11.request.headers;
package org.apache.coyote.http11.request.header;

import java.util.HashMap;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ public ResponseEntity(final HttpStatus httpStatus, final String uri, final Cooki
this.cookie = cookie;
}

public void setCookie(final String key, final String value) {
cookie.put(key, value);
}

public HttpStatus getHttpStatus() {
return httpStatus;
}
Expand Down
54 changes: 0 additions & 54 deletions tomcat/src/main/resources/static/401.html

This file was deleted.

53 changes: 0 additions & 53 deletions tomcat/src/main/resources/static/404.html

This file was deleted.

53 changes: 0 additions & 53 deletions tomcat/src/main/resources/static/500.html

This file was deleted.

113 changes: 0 additions & 113 deletions tomcat/src/main/resources/static/index.html

This file was deleted.

70 changes: 0 additions & 70 deletions tomcat/src/main/resources/static/login.html

This file was deleted.

Loading

0 comments on commit 0e42032

Please sign in to comment.