File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class DecodeTests: XCTestCase {
47
47
XCTAssertThrowsError ( try decode ( jwt, algorithm: . hs256( " secret " . data ( using: . utf8) !) ) )
48
48
}
49
49
50
- func testInvalidExpiaryClaim ( ) {
50
+ func testInvalidExpiryClaim ( ) {
51
51
let jwt = " eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOlsiMTQyODE4ODQ5MSJdfQ.OwF-wd3THjxrEGUhh6IdnNhxQZ7ydwJ3Z6J_dfl9MBs "
52
52
XCTAssertThrowsError ( try decode ( jwt, algorithm: . hs256( " secret " . data ( using: . utf8) !) ) )
53
53
}
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ extension DecodeTests {
54
54
( " testIncorrectIssuerValidation " , testIncorrectIssuerValidation) ,
55
55
( " testMissingIssuerValidation " , testMissingIssuerValidation) ,
56
56
( " testExpiredClaim " , testExpiredClaim) ,
57
- ( " testInvalidExpiaryClaim " , testInvalidExpiaryClaim ) ,
57
+ ( " testInvalidExpiryClaim " , testInvalidExpiryClaim ) ,
58
58
( " testUnexpiredClaim " , testUnexpiredClaim) ,
59
59
( " testUnexpiredClaimString " , testUnexpiredClaimString) ,
60
60
( " testNotBeforeClaim " , testNotBeforeClaim) ,
You can’t perform that action at this time.
0 commit comments