16 lines
389 B
Swift
16 lines
389 B
Swift
//
|
|
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import XCTest
|
|
@testable import Signal
|
|
import SignalServiceKit
|
|
|
|
class ZkGroupIntegrationTest: XCTestCase {
|
|
func testServerParamsAreUpToDate() {
|
|
XCTAssertNoThrow(try GroupsV2Protos.serverPublicParams(),
|
|
"The zkgroup server public parameters have changed!")
|
|
}
|
|
}
|