Skip to content

Commit

Permalink
Update identifiers to attaswift
Browse files Browse the repository at this point in the history
  • Loading branch information
lorentey committed Sep 7, 2017
1 parent cc6154c commit ce637a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GlueKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2208,7 +2208,7 @@
INFOPLIST_FILE = Tests/PerformanceTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.12;
PRODUCT_BUNDLE_IDENTIFIER = hu.lorentey.GlueKit.PerformanceTests;
PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER_BASE).PerformanceTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = macosx;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
Expand All @@ -2226,7 +2226,7 @@
INFOPLIST_FILE = Tests/PerformanceTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.12;
PRODUCT_BUNDLE_IDENTIFIER = hu.lorentey.GlueKit.PerformanceTests;
PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER_BASE).PerformanceTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = macosx;
};
Expand Down
2 changes: 1 addition & 1 deletion Tests/GlueKitTests/DispatchSourceTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class DispatchSourceTests: XCTestCase {
func testDispatchQueue() {
let signal = Signal<Int>()

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

Expand Down
2 changes: 1 addition & 1 deletion Tests/PerformanceTests/GlueKitPerformanceTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ class SignalSendTests: XCTestCase {
let signal = Signal<Int>()
let c = signal.subscribe { i in count += 1 }

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

let group = DispatchGroup()
self.startMeasuring()
Expand Down

0 comments on commit ce637a7

Please sign in to comment.