Skip to content

Commit

Permalink
signedBodyValue should use description instead of rawValue
Browse files Browse the repository at this point in the history
  • Loading branch information
dayaffe committed Jun 25, 2024
1 parent a6b4785 commit af8d5de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SigningConfigTests: XCBaseTestCase {
XCTAssertNotNil(cSigningConfig.credentials)
XCTAssertEqual(UInt64(signingConfig.expiration!), cSigningConfig.expiration_in_seconds)
XCTAssertEqual(signingConfig.signedBodyHeader.rawValue, cSigningConfig.signed_body_header)
XCTAssertEqual(signingConfig.signedBodyValue.rawValue, cSigningConfig.signed_body_value.toString())
XCTAssertEqual(signingConfig.signedBodyValue.description, cSigningConfig.signed_body_value.toString())
}
}
}

0 comments on commit af8d5de

Please sign in to comment.