Skip to content

Commit

Permalink
use distinct static file
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
  • Loading branch information
ndeloof committed Jan 29, 2025
1 parent f49576e commit b065bf3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/e2e/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ func TestBuildImageDependencies(t *testing.T) {
Err: "No such image: build-dependencies-service",
})

res = cli.RunDockerComposeCmd(t, "build")
res = cli.RunDockerComposeCmd(t, "--compatibility", "build")
t.Log(res.Combined())

res = cli.RunDockerCmd(t,
Expand Down
2 changes: 1 addition & 1 deletion pkg/e2e/fixtures/build-test/nginx-build/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>Static file 2</title>
<title>Static file 1</title>
</head>
<body>
<h2>Hello from Nginx container</h2>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<title>Static file 2</title>
</head>
<body>
<h2>Hello from Nginx container</h2>
<h2>Hello from ANOTHER Nginx container</h2>
</body>
</html>

0 comments on commit b065bf3

Please sign in to comment.