Skip to content

Commit 615592a

Browse files
author
Justin Martin
committed
Remove remaining spaces in folders
1 parent b45a3d8 commit 615592a

File tree

93 files changed

+65
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+65
-198
lines changed

Documentation/Examples/Testable/Testable.xcodeproj/project.pbxproj

+8-8
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@
3838
containerPortal = 6282C64E2C9CE3F70040DCDB /* KIF.xcodeproj */;
3939
proxyType = 2;
4040
remoteGlobalIDString = EB60ECC1177F8C83005A041A;
41-
remoteInfo = "Test Host";
41+
remoteInfo = "TestHost";
4242
};
4343
6282C6592C9CE3F70040DCDB /* PBXContainerItemProxy */ = {
4444
isa = PBXContainerItemProxy;
4545
containerPortal = 6282C64E2C9CE3F70040DCDB /* KIF.xcodeproj */;
4646
proxyType = 2;
4747
remoteGlobalIDString = EABD46CD1857A0F300A5F081;
48-
remoteInfo = "KIF Tests";
48+
remoteInfo = "KIFTests";
4949
};
5050
62F81AFB1EBBD038009B2400 /* PBXContainerItemProxy */ = {
5151
isa = PBXContainerItemProxy;
@@ -113,8 +113,8 @@
113113
isa = PBXGroup;
114114
children = (
115115
6282C6562C9CE3F70040DCDB /* libKIF.a */,
116-
6282C6582C9CE3F70040DCDB /* Test Host.app */,
117-
6282C65A2C9CE3F70040DCDB /* KIF Tests - XCTest.xctest */,
116+
6282C6582C9CE3F70040DCDB /* TestHost.app */,
117+
6282C65A2C9CE3F70040DCDB /* KIFTests - XCTest.xctest */,
118118
);
119119
name = Products;
120120
sourceTree = "<group>";
@@ -284,17 +284,17 @@
284284
remoteRef = 6282C6552C9CE3F70040DCDB /* PBXContainerItemProxy */;
285285
sourceTree = BUILT_PRODUCTS_DIR;
286286
};
287-
6282C6582C9CE3F70040DCDB /* Test Host.app */ = {
287+
6282C6582C9CE3F70040DCDB /* TestHost.app */ = {
288288
isa = PBXReferenceProxy;
289289
fileType = wrapper.application;
290-
path = "Test Host.app";
290+
path = "TestHost.app";
291291
remoteRef = 6282C6572C9CE3F70040DCDB /* PBXContainerItemProxy */;
292292
sourceTree = BUILT_PRODUCTS_DIR;
293293
};
294-
6282C65A2C9CE3F70040DCDB /* KIF Tests - XCTest.xctest */ = {
294+
6282C65A2C9CE3F70040DCDB /* KIFTests - XCTest.xctest */ = {
295295
isa = PBXReferenceProxy;
296296
fileType = wrapper.cfbundle;
297-
path = "KIF Tests - XCTest.xctest";
297+
path = "KIFTests - XCTest.xctest";
298298
remoteRef = 6282C6592C9CE3F70040DCDB /* PBXContainerItemProxy */;
299299
sourceTree = BUILT_PRODUCTS_DIR;
300300
};

KIF Tests/KIF Tests-Prefix.pch

-8
This file was deleted.

KIF.xcodeproj/project.pbxproj

+45-88
Large diffs are not rendered by default.

KIF.xcodeproj/xcshareddata/xcschemes/KIF.xcscheme

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
<BuildableReference
4343
BuildableIdentifier = "primary"
4444
BlueprintIdentifier = "EABD46AD1857A0F300A5F081"
45-
BuildableName = "KIF Tests - XCTest.xctest"
46-
BlueprintName = "KIF Tests"
45+
BuildableName = "KIFTests - XCTest.xctest"
46+
BlueprintName = "KIFTests"
4747
ReferencedContainer = "container:KIF.xcodeproj">
4848
</BuildableReference>
4949
</TestableReference>

KIF.xcodeproj/xcshareddata/xcschemes/KIFFramework.xcscheme

-80
This file was deleted.

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ let package = Package(
3131
.testTarget(
3232
name: "KIFTests",
3333
dependencies: ["KIF"],
34-
path: "./KIF Tests",
34+
path: "./Tests",
3535
cSettings: [.headerSearchPath("../Sources/KIF/")] // allow to look a "private" headers
3636
),
3737
]

README.md

+5-5

Sources/KIF/Additions/UIAccessibilityCustomAction+KIFAdditions.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// UIAccessibilityCustomAction+KIFAdditions.m
3-
// KIF Tests
3+
// KIF
44
//
55
// Created by Alex Odawa on 09/07/2024.
66
//

Test Host/en.lproj/InfoPlist.strings

-2
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Test Host/OffscreenViewController.m TestHost/OffscreenViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// OffscreenViewController.m
3-
// Test Host
3+
// TestHost
44
//
55
// Created by Steve Sun on 2023-03-28.
66
//
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Test Host/Test Host-Prefix.pch TestHost/TestHost-Prefix.pch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Prefix header for all source files of the 'Test Host' target in the 'Test Host' project
2+
// Prefix header for all source files of the 'TestHost' target in the 'KIF' project
33
//
44

55
#import <Availability.h>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Test Host/main.m TestHost/main.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// main.m
3-
// Test Host
3+
// TestHost
44
//
55
// Created by Brian Nickel on 6/29/13.
66
//
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)