Skip to content

Commit ce637a7

Browse files
committed
Update identifiers to attaswift
1 parent cc6154c commit ce637a7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

GlueKit.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2208,7 +2208,7 @@
22082208
INFOPLIST_FILE = Tests/PerformanceTests/Info.plist;
22092209
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
22102210
MACOSX_DEPLOYMENT_TARGET = 10.12;
2211-
PRODUCT_BUNDLE_IDENTIFIER = hu.lorentey.GlueKit.PerformanceTests;
2211+
PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER_BASE).PerformanceTests";
22122212
PRODUCT_NAME = "$(TARGET_NAME)";
22132213
SDKROOT = macosx;
22142214
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
@@ -2226,7 +2226,7 @@
22262226
INFOPLIST_FILE = Tests/PerformanceTests/Info.plist;
22272227
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
22282228
MACOSX_DEPLOYMENT_TARGET = 10.12;
2229-
PRODUCT_BUNDLE_IDENTIFIER = hu.lorentey.GlueKit.PerformanceTests;
2229+
PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER_BASE).PerformanceTests";
22302230
PRODUCT_NAME = "$(TARGET_NAME)";
22312231
SDKROOT = macosx;
22322232
};

Tests/GlueKitTests/DispatchSourceTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class DispatchSourceTests: XCTestCase {
1515
func testDispatchQueue() {
1616
let signal = Signal<Int>()
1717

18-
let queue = DispatchQueue(label: "hu.lorentey.GlueKit.test")
18+
let queue = DispatchQueue(label: "org.attaswift.GlueKit.test")
1919
let semaphore = DispatchSemaphore(value: 1)
2020
var r: [Int] = []
2121

Tests/PerformanceTests/GlueKitPerformanceTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ class SignalSendTests: XCTestCase {
306306
let signal = Signal<Int>()
307307
let c = signal.subscribe { i in count += 1 }
308308

309-
let queues = (1...queueCount).map { i in DispatchQueue(label: "com.github.lorentey.GlueKit.testQueue \(i)") }
309+
let queues = (1...queueCount).map { i in DispatchQueue(label: "org.attaswift.GlueKit.testQueue \(i)") }
310310

311311
let group = DispatchGroup()
312312
self.startMeasuring()

0 commit comments

Comments
 (0)