# Spot the bug: iOS > One snippet. Find the bug, or prove there isn't one. Daily challenge: 2026-08-19 (UTC) ยท Mid-Level ```swift import XCTest @testable import MyApp final class TimerTests: XCTestCase { func testCountdown() { let countdown = Countdown(seconds: 2) countdown.start() Thread.sleep(forTimeInterval: 3) XCTAssertTrue(countdown.isFinished) } } ``` ## Your verdict - Security flaw - Logic bug - Code style - No issue One attempt per day. The answer shows up right after. --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/en/daily/ios