Pārlūkot izejas kodu

Merge branch 'refactor'

* refactor:
  Remove `t.build_dir = 'build'` from Rakefile
  Fix test name
Norio Nomura 10 gadi atpakaļ
vecāks
revīzija
67b037747b
2 mainītis faili ar 1 papildinājumiem un 4 dzēšanām
  1. 0 3
      Rakefile
  2. 1 1
      SecEncodeTransformTests/SecEncodeTransformTests.swift

+ 0 - 3
Rakefile

@@ -17,7 +17,6 @@ namespace :test do
     t.scheme = 'Base32-iOS'
     t.sdk = 'iphonesimulator'
     t.configuration = 'Release'
-    t.build_dir = 'build'
     destinations.each do |destination|
       t.add_destination(destination)
     end
@@ -29,7 +28,6 @@ namespace :test do
     t.scheme = 'Base32-Mac'
     t.sdk = 'macosx'
     t.configuration = 'Release'
-    t.build_dir = 'build'
     t.formatter = 'xcpretty -c'
   end
 
@@ -38,7 +36,6 @@ namespace :test do
     t.scheme = 'SecEncodeTransformTests'
     t.sdk = 'macosx'
     t.configuration = 'Release'
-    t.build_dir = 'build'
     t.formatter = 'xcpretty -c'
   end
 end

+ 1 - 1
SecEncodeTransformTests/SecEncodeTransformTests.swift

@@ -47,7 +47,7 @@ class SecEncodeTransformTests: XCTestCase {
         }
     }
     
-    func test_RFC4648_DecodeUsingSecEncodeTransform() {
+    func test_RFC4648_Decode_UsingSecEncodeTransform() {
         self.measureBlock{
             for _ in 0...100 {
                 for (expect, test, testHex) in self.vectors {