Skip to content

Commit

Permalink
Fixing some default values
Browse files Browse the repository at this point in the history
  • Loading branch information
casabre committed Jun 15, 2023
1 parent 7340227 commit 62ca5ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/pytest_fluent/data/schema.stage.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"properties": {
"tag": {
"$ref": "#/definitions/RegexString",
"default": "<args.tag>"
"default": "<fluentd-tag>"
},
"label": {
"$ref": "#/definitions/RegexString",
"default": "<args.label>"
"default": "<fluentd-label>"
},
"replace": {
"type": "object",
Expand Down
4 changes: 2 additions & 2 deletions tests/data/default.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"all": {
"tag": "<args.tag>",
"label": "<args.label>"
"tag": "<fluentd-tag>",
"label": "<fluentd-label>"
}
}
4 changes: 2 additions & 2 deletions tests/data/default.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
all:
tag: "<args.tag>"
label: "<args.label>"
tag: "<fluentd-tag>"
label: "<fluentd-label>"

0 comments on commit 62ca5ed

Please sign in to comment.