Skip to content

Commit

Permalink
Set appropriate TestCategory on PinComplexityTests.cs.
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisDyallo committed Aug 7, 2024
1 parent 6782e66 commit 992a152
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ namespace Yubico.YubiKey
/// Tests device that it will not accept PINs or PUKs which violate PIN complexity
/// Before running the tests, reset the FIDO2/PIV application on the device
/// </summary>
[Trait(TraitTypes.Category, TestCategories.RequiresFips)]
public class PinComplexityTests
{

private readonly ReadOnlyMemory<byte> _defaultPin = new ReadOnlyMemory<byte>(Encoding.ASCII.GetBytes("123456"));
private readonly ReadOnlyMemory<byte> _complexPin = new ReadOnlyMemory<byte>(Encoding.ASCII.GetBytes("11234567"));
private readonly ReadOnlyMemory<byte> _invalidPin = new ReadOnlyMemory<byte>(Encoding.ASCII.GetBytes("33333333"));
Expand Down

0 comments on commit 992a152

Please sign in to comment.