Skip to content

Commit

Permalink
refactor: Rename test class
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziodemaria committed Jul 5, 2024
1 parent f273269 commit 0b1779e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/ConfidenceTests/ConfidenceIntegrationTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class ConfidenceIntegrationTests: XCTestCase {
throw TestError.missingClientToken
}

let logger = DebugLoggerTests()
let logger = DebugLoggerFake()
let confidence = Confidence.Builder(clientSecret: clientToken)
.withDebugLogger(debugLogger: logger)
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Foundation

@testable import Confidence

internal class DebugLoggerTests: DebugLogger {
internal class DebugLoggerFake: DebugLogger {
private let uploadSuccessCounter = ThreadSafeCounter()

func logEvent(action: String, event: ConfidenceEvent?) {
Expand Down

0 comments on commit 0b1779e

Please sign in to comment.