Skip to content

Commit

Permalink
BIT-100 Hardcodes KnownDevice fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-livefront committed Sep 7, 2023
1 parent 864d13d commit df6c2de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import Foundation

extension APITestData {
static let knownDeviceTrue = loadFromBundle(resource: "KnownDeviceTrue", extension: "json")
static let knownDeviceFalse = loadFromBundle(resource: "KnownDeviceFalse", extension: "json")
static let knownDeviceTrue = APITestData(data: Data("true".utf8))
static let knownDeviceFalse = APITestData(data: Data("false".utf8))
}

This file was deleted.

This file was deleted.

0 comments on commit df6c2de

Please sign in to comment.