From 2f52b71209d835ab7f0b8cdb32e69e3f76d5ade3 Mon Sep 17 00:00:00 2001 From: metalurgical <97008724+metalurgical@users.noreply.github.com> Date: Mon, 22 Apr 2024 09:41:14 +0200 Subject: [PATCH] fix: imports --- Sources/ThresholdKey/Common/KeyPoint.swift | 4 ++-- Sources/ThresholdKey/Common/NodeDetails.swift | 4 ++-- Sources/ThresholdKey/Common/PrivateKey.swift | 4 ++-- Sources/ThresholdKey/Common/ShareStore.swift | 4 ++-- Sources/ThresholdKey/Common/TssOptions.swift | 4 ++-- Sources/ThresholdKey/GenerateShareStoreResult.swift | 4 ++-- Sources/ThresholdKey/KeyDetails.swift | 4 ++-- Sources/ThresholdKey/KeyPointArray.swift | 4 ++-- Sources/ThresholdKey/KeyReconstructionDetails.swift | 4 ++-- Sources/ThresholdKey/LocalMetadataTransitions.swift | 4 ++-- Sources/ThresholdKey/Metadata.swift | 4 ++-- Sources/ThresholdKey/Modules/PrivateKeysModule.swift | 4 ++-- Sources/ThresholdKey/Modules/SecurityQuestionModule.swift | 4 ++-- Sources/ThresholdKey/Modules/SeedPhraseModule.swift | 4 ++-- Sources/ThresholdKey/Modules/ShareSerializationModule.swift | 4 ++-- Sources/ThresholdKey/Modules/ShareTransferModule.swift | 4 ++-- Sources/ThresholdKey/Modules/TssModule.swift | 4 ++-- Sources/ThresholdKey/Polynomial.swift | 4 ++-- Sources/ThresholdKey/PublicPolynomial.swift | 4 ++-- Sources/ThresholdKey/RssComm.swift | 4 ++-- Sources/ThresholdKey/ServiceProvider.swift | 4 ++-- Sources/ThresholdKey/ShareMap.swift | 4 ++-- Sources/ThresholdKey/ShareStoreArray.swift | 4 ++-- Sources/ThresholdKey/ShareStoreMap.swift | 4 ++-- Sources/ThresholdKey/ShareStorePolyIdIndexMap.swift | 4 ++-- Sources/ThresholdKey/ShareTransferStore.swift | 4 ++-- Sources/ThresholdKey/StorageLayer.swift | 4 ++-- Sources/ThresholdKey/ThresholdKey.swift | 4 ++-- Sources/ThresholdKey/Version.swift | 4 ++-- Tests/tkeypkgTests/IntegrationTests.swift | 2 +- .../tkeypkgTests/modules/tkey_pkgPrivateKeysModuleTests.swift | 2 +- .../modules/tkey_pkgSecurityQuestionModuleTests.swift | 2 +- .../tkeypkgTests/modules/tkey_pkgSeedPhraseModuleTests.swift | 2 +- .../modules/tkey_pkgShareSerializationModuleTests.swift | 2 +- .../modules/tkey_pkgShareTransferModuleTests.swift | 2 +- Tests/tkeypkgTests/tkey_base.swift | 2 +- .../tkeypkgTests/tkey_pkgGenerateShareStoreResultTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgKeyDetailsTest.swift | 2 +- Tests/tkeypkgTests/tkey_pkgKeyPointArrayTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgKeyPointTests.swift | 2 +- .../tkeypkgTests/tkey_pkgKeyReconstructionDetailsTests.swift | 2 +- .../tkeypkgTests/tkey_pkgLocalMetadataTransitionsTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgMetadataTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgNodeDetailsTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgPolynomialTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgPrivateKeyTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgPublicPolynomialTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgServiceProviderTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgShareStoreArrayTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgShareStoreMapTests.swift | 2 +- .../tkeypkgTests/tkey_pkgShareStorePolyIdIndexMapTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgShareStoreTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgStorageLayerTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgThresholdKeyTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgTssOptionsTests.swift | 2 +- Tests/tkeypkgTests/tkey_pkgVersionTests.swift | 2 +- 56 files changed, 85 insertions(+), 85 deletions(-) diff --git a/Sources/ThresholdKey/Common/KeyPoint.swift b/Sources/ThresholdKey/Common/KeyPoint.swift index dabe7ae..7dd35c5 100644 --- a/Sources/ThresholdKey/Common/KeyPoint.swift +++ b/Sources/ThresholdKey/Common/KeyPoint.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif diff --git a/Sources/ThresholdKey/Common/NodeDetails.swift b/Sources/ThresholdKey/Common/NodeDetails.swift index 6eb9b3e..368b79b 100644 --- a/Sources/ThresholdKey/Common/NodeDetails.swift +++ b/Sources/ThresholdKey/Common/NodeDetails.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) -import tkey +#if canImport(lib) + import lib #endif public final class NodeDetails { diff --git a/Sources/ThresholdKey/Common/PrivateKey.swift b/Sources/ThresholdKey/Common/PrivateKey.swift index a00644d..f05dcdf 100644 --- a/Sources/ThresholdKey/Common/PrivateKey.swift +++ b/Sources/ThresholdKey/Common/PrivateKey.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class PrivateKey { diff --git a/Sources/ThresholdKey/Common/ShareStore.swift b/Sources/ThresholdKey/Common/ShareStore.swift index e2db1a1..9bcf6ad 100644 --- a/Sources/ThresholdKey/Common/ShareStore.swift +++ b/Sources/ThresholdKey/Common/ShareStore.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class ShareStore { diff --git a/Sources/ThresholdKey/Common/TssOptions.swift b/Sources/ThresholdKey/Common/TssOptions.swift index a4a43f8..351fbf3 100644 --- a/Sources/ThresholdKey/Common/TssOptions.swift +++ b/Sources/ThresholdKey/Common/TssOptions.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) -import tkey +#if canImport(lib) + import lib #endif public final class TssOptions { diff --git a/Sources/ThresholdKey/GenerateShareStoreResult.swift b/Sources/ThresholdKey/GenerateShareStoreResult.swift index c057260..046ff77 100644 --- a/Sources/ThresholdKey/GenerateShareStoreResult.swift +++ b/Sources/ThresholdKey/GenerateShareStoreResult.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class GenerateShareStoreResult { diff --git a/Sources/ThresholdKey/KeyDetails.swift b/Sources/ThresholdKey/KeyDetails.swift index 1c3b462..7a1ed9c 100644 --- a/Sources/ThresholdKey/KeyDetails.swift +++ b/Sources/ThresholdKey/KeyDetails.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class KeyDetails { diff --git a/Sources/ThresholdKey/KeyPointArray.swift b/Sources/ThresholdKey/KeyPointArray.swift index 5c50203..57ca029 100644 --- a/Sources/ThresholdKey/KeyPointArray.swift +++ b/Sources/ThresholdKey/KeyPointArray.swift @@ -1,7 +1,7 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public class KeyPointArray { diff --git a/Sources/ThresholdKey/KeyReconstructionDetails.swift b/Sources/ThresholdKey/KeyReconstructionDetails.swift index 138d785..088e439 100644 --- a/Sources/ThresholdKey/KeyReconstructionDetails.swift +++ b/Sources/ThresholdKey/KeyReconstructionDetails.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class KeyReconstructionDetails: Codable { diff --git a/Sources/ThresholdKey/LocalMetadataTransitions.swift b/Sources/ThresholdKey/LocalMetadataTransitions.swift index 5620970..1ed97d2 100644 --- a/Sources/ThresholdKey/LocalMetadataTransitions.swift +++ b/Sources/ThresholdKey/LocalMetadataTransitions.swift @@ -1,7 +1,7 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class LocalMetadataTransitions { diff --git a/Sources/ThresholdKey/Metadata.swift b/Sources/ThresholdKey/Metadata.swift index fa5e94c..bcfd3ed 100644 --- a/Sources/ThresholdKey/Metadata.swift +++ b/Sources/ThresholdKey/Metadata.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class Metadata { diff --git a/Sources/ThresholdKey/Modules/PrivateKeysModule.swift b/Sources/ThresholdKey/Modules/PrivateKeysModule.swift index c7a3396..e7f6b71 100644 --- a/Sources/ThresholdKey/Modules/PrivateKeysModule.swift +++ b/Sources/ThresholdKey/Modules/PrivateKeysModule.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public struct KeyData: Decodable { diff --git a/Sources/ThresholdKey/Modules/SecurityQuestionModule.swift b/Sources/ThresholdKey/Modules/SecurityQuestionModule.swift index f4917c1..a374d46 100644 --- a/Sources/ThresholdKey/Modules/SecurityQuestionModule.swift +++ b/Sources/ThresholdKey/Modules/SecurityQuestionModule.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class SecurityQuestionModule { diff --git a/Sources/ThresholdKey/Modules/SeedPhraseModule.swift b/Sources/ThresholdKey/Modules/SeedPhraseModule.swift index b18034d..25da1a6 100644 --- a/Sources/ThresholdKey/Modules/SeedPhraseModule.swift +++ b/Sources/ThresholdKey/Modules/SeedPhraseModule.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public struct SeedPhrase: Codable { diff --git a/Sources/ThresholdKey/Modules/ShareSerializationModule.swift b/Sources/ThresholdKey/Modules/ShareSerializationModule.swift index 32a51ea..590e40c 100644 --- a/Sources/ThresholdKey/Modules/ShareSerializationModule.swift +++ b/Sources/ThresholdKey/Modules/ShareSerializationModule.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class ShareSerializationModule { diff --git a/Sources/ThresholdKey/Modules/ShareTransferModule.swift b/Sources/ThresholdKey/Modules/ShareTransferModule.swift index 04a11cf..a1dfa17 100644 --- a/Sources/ThresholdKey/Modules/ShareTransferModule.swift +++ b/Sources/ThresholdKey/Modules/ShareTransferModule.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class ShareTransferModule { diff --git a/Sources/ThresholdKey/Modules/TssModule.swift b/Sources/ThresholdKey/Modules/TssModule.swift index cf479e1..8881ad4 100644 --- a/Sources/ThresholdKey/Modules/TssModule.swift +++ b/Sources/ThresholdKey/Modules/TssModule.swift @@ -1,8 +1,8 @@ import Foundation import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif import FetchNodeDetails import TorusUtils diff --git a/Sources/ThresholdKey/Polynomial.swift b/Sources/ThresholdKey/Polynomial.swift index 926f5bc..1ca78f5 100644 --- a/Sources/ThresholdKey/Polynomial.swift +++ b/Sources/ThresholdKey/Polynomial.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) -import tkey +#if canImport(lib) + import lib #endif public final class Polynomial { diff --git a/Sources/ThresholdKey/PublicPolynomial.swift b/Sources/ThresholdKey/PublicPolynomial.swift index 88f3a79..440b122 100644 --- a/Sources/ThresholdKey/PublicPolynomial.swift +++ b/Sources/ThresholdKey/PublicPolynomial.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) -import tkey +#if canImport(lib) + import lib #endif public final class PublicPolynomial { diff --git a/Sources/ThresholdKey/RssComm.swift b/Sources/ThresholdKey/RssComm.swift index 0b41ba5..0c82c73 100644 --- a/Sources/ThresholdKey/RssComm.swift +++ b/Sources/ThresholdKey/RssComm.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) -import tkey +#if canImport(lib) + import lib #endif public final class RssComm { diff --git a/Sources/ThresholdKey/ServiceProvider.swift b/Sources/ThresholdKey/ServiceProvider.swift index a930cc6..b77db41 100644 --- a/Sources/ThresholdKey/ServiceProvider.swift +++ b/Sources/ThresholdKey/ServiceProvider.swift @@ -1,7 +1,7 @@ import Foundation import TorusUtils -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif import FetchNodeDetails diff --git a/Sources/ThresholdKey/ShareMap.swift b/Sources/ThresholdKey/ShareMap.swift index 0a62922..4103f42 100644 --- a/Sources/ThresholdKey/ShareMap.swift +++ b/Sources/ThresholdKey/ShareMap.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class ShareMap { diff --git a/Sources/ThresholdKey/ShareStoreArray.swift b/Sources/ThresholdKey/ShareStoreArray.swift index 074646d..c921a09 100644 --- a/Sources/ThresholdKey/ShareStoreArray.swift +++ b/Sources/ThresholdKey/ShareStoreArray.swift @@ -1,7 +1,7 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public class ShareStoreArray { diff --git a/Sources/ThresholdKey/ShareStoreMap.swift b/Sources/ThresholdKey/ShareStoreMap.swift index 518082d..7a40ec9 100644 --- a/Sources/ThresholdKey/ShareStoreMap.swift +++ b/Sources/ThresholdKey/ShareStoreMap.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class ShareStoreMap { diff --git a/Sources/ThresholdKey/ShareStorePolyIdIndexMap.swift b/Sources/ThresholdKey/ShareStorePolyIdIndexMap.swift index 945f068..1df3084 100644 --- a/Sources/ThresholdKey/ShareStorePolyIdIndexMap.swift +++ b/Sources/ThresholdKey/ShareStorePolyIdIndexMap.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class ShareStorePolyIdIndexMap { diff --git a/Sources/ThresholdKey/ShareTransferStore.swift b/Sources/ThresholdKey/ShareTransferStore.swift index dd98148..b2f7310 100644 --- a/Sources/ThresholdKey/ShareTransferStore.swift +++ b/Sources/ThresholdKey/ShareTransferStore.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif public final class ShareTransferStore { diff --git a/Sources/ThresholdKey/StorageLayer.swift b/Sources/ThresholdKey/StorageLayer.swift index fc457a7..92ce5ee 100644 --- a/Sources/ThresholdKey/StorageLayer.swift +++ b/Sources/ThresholdKey/StorageLayer.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif diff --git a/Sources/ThresholdKey/ThresholdKey.swift b/Sources/ThresholdKey/ThresholdKey.swift index 6ccd640..a8396ed 100644 --- a/Sources/ThresholdKey/ThresholdKey.swift +++ b/Sources/ThresholdKey/ThresholdKey.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif import FetchNodeDetails import TorusUtils diff --git a/Sources/ThresholdKey/Version.swift b/Sources/ThresholdKey/Version.swift index 2ae82ea..754415b 100644 --- a/Sources/ThresholdKey/Version.swift +++ b/Sources/ThresholdKey/Version.swift @@ -1,6 +1,6 @@ import Foundation -#if canImport(tkey) - import tkey +#if canImport(lib) + import lib #endif /// Returns the library version. diff --git a/Tests/tkeypkgTests/IntegrationTests.swift b/Tests/tkeypkgTests/IntegrationTests.swift index f64d1dd..ffe94f1 100644 --- a/Tests/tkeypkgTests/IntegrationTests.swift +++ b/Tests/tkeypkgTests/IntegrationTests.swift @@ -1,6 +1,6 @@ import FetchNodeDetails import Foundation -@testable import tkey_mpc_swift +@testable import tkey import TorusUtils import XCTest diff --git a/Tests/tkeypkgTests/modules/tkey_pkgPrivateKeysModuleTests.swift b/Tests/tkeypkgTests/modules/tkey_pkgPrivateKeysModuleTests.swift index b54c4c6..8980001 100644 --- a/Tests/tkeypkgTests/modules/tkey_pkgPrivateKeysModuleTests.swift +++ b/Tests/tkeypkgTests/modules/tkey_pkgPrivateKeysModuleTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgPrivateKeyModuleTests: XCTestCase { diff --git a/Tests/tkeypkgTests/modules/tkey_pkgSecurityQuestionModuleTests.swift b/Tests/tkeypkgTests/modules/tkey_pkgSecurityQuestionModuleTests.swift index 3ec78ca..09c9137 100644 --- a/Tests/tkeypkgTests/modules/tkey_pkgSecurityQuestionModuleTests.swift +++ b/Tests/tkeypkgTests/modules/tkey_pkgSecurityQuestionModuleTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgSecurityQuestionModuleTests: XCTestCase { diff --git a/Tests/tkeypkgTests/modules/tkey_pkgSeedPhraseModuleTests.swift b/Tests/tkeypkgTests/modules/tkey_pkgSeedPhraseModuleTests.swift index e0e0333..c2a55d8 100644 --- a/Tests/tkeypkgTests/modules/tkey_pkgSeedPhraseModuleTests.swift +++ b/Tests/tkeypkgTests/modules/tkey_pkgSeedPhraseModuleTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgSeedPhraseModuleTests: XCTestCase { diff --git a/Tests/tkeypkgTests/modules/tkey_pkgShareSerializationModuleTests.swift b/Tests/tkeypkgTests/modules/tkey_pkgShareSerializationModuleTests.swift index c6ff2b7..a87da60 100644 --- a/Tests/tkeypkgTests/modules/tkey_pkgShareSerializationModuleTests.swift +++ b/Tests/tkeypkgTests/modules/tkey_pkgShareSerializationModuleTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgShareSerializationModuleTests: XCTestCase { diff --git a/Tests/tkeypkgTests/modules/tkey_pkgShareTransferModuleTests.swift b/Tests/tkeypkgTests/modules/tkey_pkgShareTransferModuleTests.swift index 06e23ee..f553f5f 100644 --- a/Tests/tkeypkgTests/modules/tkey_pkgShareTransferModuleTests.swift +++ b/Tests/tkeypkgTests/modules/tkey_pkgShareTransferModuleTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgShareTransferModuleTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_base.swift b/Tests/tkeypkgTests/tkey_base.swift index acfbfec..117a626 100644 --- a/Tests/tkeypkgTests/tkey_base.swift +++ b/Tests/tkeypkgTests/tkey_base.swift @@ -8,7 +8,7 @@ import Foundation import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import TorusUtils class tkey_baseTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgGenerateShareStoreResultTests.swift b/Tests/tkeypkgTests/tkey_pkgGenerateShareStoreResultTests.swift index 1834045..a15bfd3 100644 --- a/Tests/tkeypkgTests/tkey_pkgGenerateShareStoreResultTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgGenerateShareStoreResultTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgGenerateShareStoreResultTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgKeyDetailsTest.swift b/Tests/tkeypkgTests/tkey_pkgKeyDetailsTest.swift index ed0777c..97d25ce 100644 --- a/Tests/tkeypkgTests/tkey_pkgKeyDetailsTest.swift +++ b/Tests/tkeypkgTests/tkey_pkgKeyDetailsTest.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgKeyDetailsTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgKeyPointArrayTests.swift b/Tests/tkeypkgTests/tkey_pkgKeyPointArrayTests.swift index 16992fc..ceebfeb 100644 --- a/Tests/tkeypkgTests/tkey_pkgKeyPointArrayTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgKeyPointArrayTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgKeyPointArrayTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgKeyPointTests.swift b/Tests/tkeypkgTests/tkey_pkgKeyPointTests.swift index 7384f09..6404c9b 100644 --- a/Tests/tkeypkgTests/tkey_pkgKeyPointTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgKeyPointTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgKeyPointTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgKeyReconstructionDetailsTests.swift b/Tests/tkeypkgTests/tkey_pkgKeyReconstructionDetailsTests.swift index bac4944..d7f781b 100644 --- a/Tests/tkeypkgTests/tkey_pkgKeyReconstructionDetailsTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgKeyReconstructionDetailsTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgKeyReconstructionDetailsTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgLocalMetadataTransitionsTests.swift b/Tests/tkeypkgTests/tkey_pkgLocalMetadataTransitionsTests.swift index d74fc08..3a0f1a1 100644 --- a/Tests/tkeypkgTests/tkey_pkgLocalMetadataTransitionsTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgLocalMetadataTransitionsTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgLocalMetadataTransitionsTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgMetadataTests.swift b/Tests/tkeypkgTests/tkey_pkgMetadataTests.swift index fb029cf..32a2e97 100644 --- a/Tests/tkeypkgTests/tkey_pkgMetadataTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgMetadataTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgMetadataTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgNodeDetailsTests.swift b/Tests/tkeypkgTests/tkey_pkgNodeDetailsTests.swift index f325a4c..155d7b4 100644 --- a/Tests/tkeypkgTests/tkey_pkgNodeDetailsTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgNodeDetailsTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgNodeDetailsTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgPolynomialTests.swift b/Tests/tkeypkgTests/tkey_pkgPolynomialTests.swift index 51372fe..5699833 100644 --- a/Tests/tkeypkgTests/tkey_pkgPolynomialTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgPolynomialTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgPolynomialTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgPrivateKeyTests.swift b/Tests/tkeypkgTests/tkey_pkgPrivateKeyTests.swift index 2d33d73..6133b27 100644 --- a/Tests/tkeypkgTests/tkey_pkgPrivateKeyTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgPrivateKeyTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgPrivateKeyTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgPublicPolynomialTests.swift b/Tests/tkeypkgTests/tkey_pkgPublicPolynomialTests.swift index 0a34349..f3a63e7 100644 --- a/Tests/tkeypkgTests/tkey_pkgPublicPolynomialTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgPublicPolynomialTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgPublicPolynomialTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgServiceProviderTests.swift b/Tests/tkeypkgTests/tkey_pkgServiceProviderTests.swift index 07fdee9..03450ed 100644 --- a/Tests/tkeypkgTests/tkey_pkgServiceProviderTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgServiceProviderTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgServiceProviderTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgShareStoreArrayTests.swift b/Tests/tkeypkgTests/tkey_pkgShareStoreArrayTests.swift index 0d65220..356f0e3 100644 --- a/Tests/tkeypkgTests/tkey_pkgShareStoreArrayTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgShareStoreArrayTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgShareStoreArrayTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgShareStoreMapTests.swift b/Tests/tkeypkgTests/tkey_pkgShareStoreMapTests.swift index fbae2c3..93d0e14 100644 --- a/Tests/tkeypkgTests/tkey_pkgShareStoreMapTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgShareStoreMapTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgShareStoreMapTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgShareStorePolyIdIndexMapTests.swift b/Tests/tkeypkgTests/tkey_pkgShareStorePolyIdIndexMapTests.swift index b49f9d2..7bcbdb3 100644 --- a/Tests/tkeypkgTests/tkey_pkgShareStorePolyIdIndexMapTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgShareStorePolyIdIndexMapTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgShareStorePolyIdIndexMapTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgShareStoreTests.swift b/Tests/tkeypkgTests/tkey_pkgShareStoreTests.swift index be2a0ed..4e54bbf 100644 --- a/Tests/tkeypkgTests/tkey_pkgShareStoreTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgShareStoreTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgShareStoreTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgStorageLayerTests.swift b/Tests/tkeypkgTests/tkey_pkgStorageLayerTests.swift index d52e46f..5556a63 100644 --- a/Tests/tkeypkgTests/tkey_pkgStorageLayerTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgStorageLayerTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgStorageLayerTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgThresholdKeyTests.swift b/Tests/tkeypkgTests/tkey_pkgThresholdKeyTests.swift index 2a78f9d..e8ec7cb 100644 --- a/Tests/tkeypkgTests/tkey_pkgThresholdKeyTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgThresholdKeyTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey final class tkey_pkgThresholdKeyTests: XCTestCase { func test_basic_threshold_key_reconstruct() async { diff --git a/Tests/tkeypkgTests/tkey_pkgTssOptionsTests.swift b/Tests/tkeypkgTests/tkey_pkgTssOptionsTests.swift index ba34f43..0f8edb3 100644 --- a/Tests/tkeypkgTests/tkey_pkgTssOptionsTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgTssOptionsTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey import Foundation final class tkey_pkgTssOptionsTests: XCTestCase { diff --git a/Tests/tkeypkgTests/tkey_pkgVersionTests.swift b/Tests/tkeypkgTests/tkey_pkgVersionTests.swift index e3dbe46..0380a1e 100644 --- a/Tests/tkeypkgTests/tkey_pkgVersionTests.swift +++ b/Tests/tkeypkgTests/tkey_pkgVersionTests.swift @@ -1,6 +1,6 @@ import XCTest import Foundation -@testable import tkey_mpc_swift +@testable import tkey final class tkey_pkgVersionTests: XCTestCase { func test_library_version() {