Fix typos in test output (#59)

This commit is contained in:
Christian Priebe 2020-02-10 17:26:55 +00:00 committed by GitHub
parent b2de986030
commit aa197a1c15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ internal class TestRecorder: RecorderHandler, Equatable {
// this may loose precision but good enough as an example // this may loose precision but good enough as an example
values.append((Date(), Double(value))) values.append((Date(), Double(value)))
} }
print("recoding \(value) in \(self.label)") print("recording \(value) in \(self.label)")
} }
public static func == (lhs: TestRecorder, rhs: TestRecorder) -> Bool { public static func == (lhs: TestRecorder, rhs: TestRecorder) -> Bool {
@ -175,7 +175,7 @@ internal class TestTimer: TimerHandler, Equatable {
self.lock.withLock { self.lock.withLock {
values.append((Date(), duration)) values.append((Date(), duration))
} }
print("recoding \(duration) \(self.label)") print("recording \(duration) \(self.label)")
} }
public static func == (lhs: TestTimer, rhs: TestTimer) -> Bool { public static func == (lhs: TestTimer, rhs: TestTimer) -> Bool {