Skip to content

Commit

Permalink
Fix incorrect conformance test
Browse files Browse the repository at this point in the history
Former-commit-id: fcfa7fe
  • Loading branch information
hasty committed Jun 24, 2024
1 parent a365bd8 commit 78d11d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions matter/conformance/conformance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ var otherwiseTests = []conformanceTestSuite{
{Context: Context{Values: map[string]any{"STA": true, "SFR": true}}, Expected: StateOptional},
{Context: Context{Values: map[string]any{"PA": true}}, Expected: StateOptional},
{Context: Context{Values: map[string]any{"CF": true}}, Expected: StateMandatory},
{Context: Context{Values: map[string]any{"DF": true, "CF": true}}, Expected: StateOptional},
{Context: Context{Values: map[string]any{"Matter": true}}, Expected: StateDisallowed},
{Context: Context{Values: map[string]any{"SFR": true}}, Expected: StateOptional},
{Context: Context{Values: map[string]any{"Matter": true}}, Expected: StateMandatory},
},
},
{
Expand Down

0 comments on commit 78d11d4

Please sign in to comment.