Skip to content

Commit 5b18a0d

Browse files
committed
update docker-compose
1 parent 5ac4156 commit 5b18a0d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
container_name: postgres-container
88
command: ["postgres", "-c", "log_statement=all", "-c", "log_destination=stderr"]
99
ports:
10-
- 5432:5432
10+
- "5432:5432"
1111
environment:
1212
- POSTGRES_USER=root
1313
- POSTGRES_PASSWORD=root
@@ -26,8 +26,8 @@ services:
2626
depends_on:
2727
- postgresql
2828
ports:
29-
- 8080:8080
30-
- 8000:8000
29+
- "8080:8080"
30+
- "8000:8000"
3131
environment:
3232
DB_URL: "postgresql:5432/common_app"
3333
DB_USERNAME: "root"

src/test/java/com/github/throyer/common/springboot/controllers/SessionsTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public void should_sigh_in_with_correct_password() throws Exception {
4949

5050
var body = """
5151
{
52-
\"email\": \"%s\",
53-
\"password\": \"%s\"
52+
"email": "%s",
53+
"password": "%s"
5454
}
5555
""";
5656

0 commit comments

Comments
 (0)