Skip to content

Commit

Permalink
chore: version branch
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Nov 17, 2023
1 parent dc5ba07 commit 057d64a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions demo_app_toggles.json
Original file line number Diff line number Diff line change
Expand Up @@ -4287,9 +4287,9 @@
"weightType": "variable"
},
{
"name": "v4",
"name": "v3",
"weight": 333,
"payload": { "type": "string", "value": "v4" },
"payload": { "type": "string", "value": "v3" },
"overrides": [],
"weightType": "variable"
}
Expand Down
4 changes: 2 additions & 2 deletions internal/constraints/operator_semver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ func TestOperatorSemverErrors(t *testing.T) {
},
{
ctx: &context.Context{Properties: map[string]string{"x": "1.2.3"}},
constraints: []api.Constraint{{ContextName: "x", Operator: "SEMVER_LT", Value: "v4.2.1"}},
constraints: []api.Constraint{{ContextName: "x", Operator: "SEMVER_LT", Value: "v3.2.1"}},
error: "Invalid characters in version",
},
{
ctx: &context.Context{Properties: map[string]string{"x": "v4.2.1"}},
ctx: &context.Context{Properties: map[string]string{"x": "v3.2.1"}},
constraints: []api.Constraint{{ContextName: "x", Operator: "SEMVER_GT", Value: "1.2.3"}},
error: "Invalid characters in version",
},
Expand Down

0 comments on commit 057d64a

Please sign in to comment.