Skip to content

Commit 9833592

Browse files
committed
test(policy): update signature flow provider normalization checks
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 91397fe commit 9833592

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/php/Unit/Service/Policy/Provider/Signature/SignatureFlowPolicyTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ public function testProviderBuildsSignatureFlowDefinition(): void {
2121
$this->assertSame(SignatureFlowPolicy::KEY, $definition->key());
2222
$this->assertSame('none', $definition->defaultSystemValue());
2323
$this->assertSame(['none', 'parallel', 'ordered_numeric'], $definition->allowedValues(new PolicyContext()));
24-
$this->assertSame('ordered_numeric', $definition->normalizeValue(2));
24+
$this->assertSame('ordered_numeric', $definition->normalizeValue('ordered_numeric'));
2525
}
2626
}

0 commit comments

Comments
 (0)