Skip to content

Commit 6eafadd

Browse files
committed
Move query string helpers into the test target
1 parent 13071fb commit 6eafadd

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Authenticator.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
8B0028B511EB75920092DE18 /* OTPScannerOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B0028B411EB75920092DE18 /* OTPScannerOverlayView.m */; };
1414
8BF23A7213D4EF7000F3FD82 /* UIColor+OTP.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BF23A7113D4EF7000F3FD82 /* UIColor+OTP.m */; };
1515
C9044FD61824CDE7002C3C3F /* OTPBase32Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = C9044FD51824CDE7002C3C3F /* OTPBase32Tests.m */; };
16-
C9044FD91824E05E002C3C3F /* NSString+PercentEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = C9044FD81824E05E002C3C3F /* NSString+PercentEncoding.m */; };
17-
C9044FDC1824E711002C3C3F /* NSDictionary+QueryString.m in Sources */ = {isa = PBXBuildFile; fileRef = C9044FDB1824E711002C3C3F /* NSDictionary+QueryString.m */; };
16+
C93AF8DD1977B0F100853591 /* NSString+PercentEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = C9044FD81824E05E002C3C3F /* NSString+PercentEncoding.m */; };
17+
C93AF8DE1977B0F500853591 /* NSDictionary+QueryString.m in Sources */ = {isa = PBXBuildFile; fileRef = C9044FDB1824E711002C3C3F /* NSDictionary+QueryString.m */; };
1818
C940A981183EEFA300F7D04A /* OTPTokenGenerationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = C940A980183EEFA300F7D04A /* OTPTokenGenerationTests.m */; };
1919
C958CC54183043A600DD47D0 /* OTPTokenSerializationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = C958CC53183043A600DD47D0 /* OTPTokenSerializationTests.m */; };
2020
C9745D0B17DA5861008B6E23 /* UIAlertView+Blocks.m in Sources */ = {isa = PBXBuildFile; fileRef = C9745D0A17DA5861008B6E23 /* UIAlertView+Blocks.m */; };
@@ -245,10 +245,6 @@
245245
8BF23A7113D4EF7000F3FD82 /* UIColor+OTP.m */,
246246
C9745D0917DA5861008B6E23 /* UIAlertView+Blocks.h */,
247247
C9745D0A17DA5861008B6E23 /* UIAlertView+Blocks.m */,
248-
C9044FD71824E05E002C3C3F /* NSString+PercentEncoding.h */,
249-
C9044FD81824E05E002C3C3F /* NSString+PercentEncoding.m */,
250-
C9044FDA1824E711002C3C3F /* NSDictionary+QueryString.h */,
251-
C9044FDB1824E711002C3C3F /* NSDictionary+QueryString.m */,
252248
);
253249
name = Categories;
254250
sourceTree = "<group>";
@@ -265,6 +261,10 @@
265261
C9906A331812522100BAEF53 /* AuthenticatorTests */ = {
266262
isa = PBXGroup;
267263
children = (
264+
C9044FD71824E05E002C3C3F /* NSString+PercentEncoding.h */,
265+
C9044FD81824E05E002C3C3F /* NSString+PercentEncoding.m */,
266+
C9044FDA1824E711002C3C3F /* NSDictionary+QueryString.h */,
267+
C9044FDB1824E711002C3C3F /* NSDictionary+QueryString.m */,
268268
C958CC53183043A600DD47D0 /* OTPTokenSerializationTests.m */,
269269
C9C6CC831842C5BC000100C2 /* OTPTokenPersistenceTests.m */,
270270
C940A980183EEFA300F7D04A /* OTPTokenGenerationTests.m */,
@@ -442,7 +442,6 @@
442442
isa = PBXSourcesBuildPhase;
443443
buildActionMask = 2147483647;
444444
files = (
445-
C9044FD91824E05E002C3C3F /* NSString+PercentEncoding.m in Sources */,
446445
1D60589B0D05DD56006BFB54 /* main.m in Sources */,
447446
1D3623260D0F684500981E51 /* OTPAppDelegate.m in Sources */,
448447
C9D6C8461906CD54004F0E08 /* OTPTextFieldCell.m in Sources */,
@@ -457,7 +456,6 @@
457456
C99069D4180E07A100BAEF53 /* OTPTokenEntryViewController.m in Sources */,
458457
C9ABDACF17DD3CF500A86AB5 /* OTPTokenCell.m in Sources */,
459458
C9777A021908064500B4A7F5 /* OTPTokenEditViewController.m in Sources */,
460-
C9044FDC1824E711002C3C3F /* NSDictionary+QueryString.m in Sources */,
461459
);
462460
runOnlyForDeploymentPostprocessing = 0;
463461
};
@@ -467,8 +465,10 @@
467465
files = (
468466
C9044FD61824CDE7002C3C3F /* OTPBase32Tests.m in Sources */,
469467
C940A981183EEFA300F7D04A /* OTPTokenGenerationTests.m in Sources */,
468+
C93AF8DE1977B0F500853591 /* NSDictionary+QueryString.m in Sources */,
470469
C958CC54183043A600DD47D0 /* OTPTokenSerializationTests.m in Sources */,
471470
C9C6CC841842C5BC000100C2 /* OTPTokenPersistenceTests.m in Sources */,
471+
C93AF8DD1977B0F100853591 /* NSString+PercentEncoding.m in Sources */,
472472
);
473473
runOnlyForDeploymentPostprocessing = 0;
474474
};

0 commit comments

Comments
 (0)