[Tests] Fixed arguments labels for performance tests.

This commit is contained in:
Timofey Solomko
2017-05-31 22:26:16 +03:00
parent 6a7f153240
commit fc407c977c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ class Bzip2Tests: XCTestCase {
#if PERF_TESTS
print("Performing performance tests for \(Bzip2Tests.testType).\(testName)")
self.measure {
_ = try? BZip2.decompress(compressedData: testData)
_ = try? BZip2.decompress(data: testData)
}
#endif
}
+1 -1
View File
@@ -72,7 +72,7 @@ class GzipTests: XCTestCase {
#if PERF_TESTS
print("Performing performance tests for gz.\(testName)")
self.measure {
_ = try? GzipArchive.unarchive(archiveData: archiveData)
_ = try? GzipArchive.unarchive(archive: testData)
}
#endif
}
+1 -1
View File
@@ -44,7 +44,7 @@ class XZTests: XCTestCase {
#if PERF_TESTS
print("Performing performance tests for \(XZTests.testType).\(testName)")
self.measure {
_ = try? XZArchive.unarchive(archiveData: testData)
_ = try? XZArchive.unarchive(archive: testData)
}
#endif
}