-
-
Notifications
You must be signed in to change notification settings - Fork 424
add failing test for issue 777 #782
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
caddy: | ||
ports: | ||
- "foo:foo" | ||
volumes: | ||
- caddy_data | ||
=== | ||
$data['caddy']['ports'][] = "bar:baz"; | ||
=== | ||
caddy: | ||
ports: | ||
- "foo:foo" | ||
- 'bar:baz' | ||
volumes: | ||
- caddy_data |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
caddy: | ||
ports: | ||
- "foo:foo" | ||
volumes: | ||
- caddy_data | ||
=== | ||
$data['caddy']['ports'][] = 'bar:baz'; | ||
=== | ||
caddy: | ||
ports: | ||
- "foo:foo" | ||
- 'bar:baz' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This test passes. but not w/ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So we don't change the existing double quotes to single quotes. It's only that the NEW keys we add are double quotes? If so, I think it's fine. |
||
volumes: | ||
- caddy_data |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
caddy: | ||
ports: | ||
- "80:80" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For purposes of figuring out the root cause, if you changed this from Or, if you use |
||
volumes: | ||
- caddy_data | ||
=== | ||
$data['caddy']['ports'][] = "443:443"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again for purposes of figuring out the root cause, if you changed this from |
||
=== | ||
caddy: | ||
ports: | ||
- "80:80" | ||
- "443:443" | ||
volumes: | ||
- caddy_data |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
caddy: | ||
=== | ||
$data['caddy'][] = "\"443\""; | ||
=== | ||
caddy: | ||
- "443" |
Uh oh!
There was an error while loading. Please reload this page.