@@ -3,7 +3,7 @@ import XCTest
3
3
4
4
5
5
extension EncodeTests {
6
- static var allTests : [ ( String , ( EncodeTests ) -> Void throws -> Void ) ] {
6
+ static var allTests : [ ( String , ( EncodeTests ) -> ( Void ) throws -> Void ) ] {
7
7
return [
8
8
( " testEncodingJWT " , testEncodingJWT) ,
9
9
( " testEncodingWithBuilder " , testEncodingWithBuilder) ,
@@ -12,7 +12,7 @@ extension EncodeTests {
12
12
}
13
13
14
14
extension DecodeTests {
15
- static var allTests : [ ( String , ( DecodeTests ) -> Void throws -> Void ) ] {
15
+ static var allTests : [ ( String , ( DecodeTests ) -> ( Void ) throws -> Void ) ] {
16
16
return [
17
17
( " testDecodingValidJWT " , testDecodingValidJWT) ,
18
18
( " testFailsToDecodeInvalidStringWithoutThreeSegments " , testFailsToDecodeInvalidStringWithoutThreeSegments) ,
@@ -46,7 +46,7 @@ extension DecodeTests {
46
46
}
47
47
48
48
extension PayloadTests {
49
- static var allTests : [ ( String , ( PayloadTests ) -> Void throws -> Void ) ] {
49
+ static var allTests : [ ( String , ( PayloadTests ) -> ( Void ) throws -> Void ) ] {
50
50
return [
51
51
( " testIssuer " , testIssuer) ,
52
52
( " testAudience " , testAudience) ,
0 commit comments