Skip to content

Commit

Permalink
get the tests passing
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Dec 20, 2024
1 parent 130ab54 commit b4f2e9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/XMTPTests/FramesTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import XCTest

final class FramesTests: XCTestCase {
func testInstantiateFramesClient() async throws {
let frameUrl = "https://fc-polls-five.vercel.app/polls/03710836-bc1d-4921-9e24-89d82015c53b?env=dev"
let frameUrl = "https://fc-polls-five.vercel.app/polls/03710836-bc1d-4921-9e24-89d82015c53b?env=production"

let key = try Crypto.secureRandomBytes(count: 32)
let bo = try PrivateKey.generate()
let client = try await Client.create(
account: bo,
options: .init(
api: .init(env: .dev, isSecure: true),
api: .init(env: .production, isSecure: true),
dbEncryptionKey: key
)
)
Expand Down

0 comments on commit b4f2e9a

Please sign in to comment.