Updated some cases for the AmiiboServiceLiveTests test cases in the tests target.

This commit is contained in:
2025-10-14 20:10:41 +02:00
parent 34627840db
commit 9f4376d858
@@ -324,8 +324,8 @@ struct AmiiboServiceLiveTests {
@Test("get last updated timestamp") @Test("get last updated timestamp")
func getLastUpdated() async throws { func getLastUpdated() async throws {
try await assertLastUpdated( try await assertLastUpdated(
day: 21, day: 10,
month: 9, month: 10,
year: 2025 year: 2025
) )
} }
@@ -659,7 +659,7 @@ enum Input {
enum Output { enum Output {
/// A list of number of items that are expected from the `assertAmiibos` assertion. /// A list of number of items that are expected from the `assertAmiibos` assertion.
static let amiibos: [Int] = [.totalAmiibos, 7, 7, 1, 1, 1, 5, .zero, 7, .totalAmiibos, 235, 235, .zero, .zero, .zero, .zero, 96, 26, .zero, .zero, 25, .totalAmiibos, 12, 6, .zero, .zero, .zero, .totalAmiibos, 49, 32, .zero, .zero, 147, .totalAmiibos, .totalAmiibos, .totalAmiibos] static let amiibos: [Int] = [.totalAmiibos, 7, 7, 1, 1, 1, 5, .zero, 7, .totalAmiibos, 235, 235, .zero, .zero, .zero, .zero, 96, 26, .zero, .zero, 63, .totalAmiibos, 12, 6, .zero, .zero, .zero, .totalAmiibos, 49, 32, .zero, .zero, 147, .totalAmiibos, .totalAmiibos, .totalAmiibos]
/// A list of errors are expected to be thrown from the `assertAmiibosThrows` assertion. /// A list of errors are expected to be thrown from the `assertAmiibosThrows` assertion.
static let amiibosThrows: [AmiiboServiceError] = [.badRequest, .badRequest, .decoding, .decoding, .badRequest, .badRequest, .badRequest, .badRequest, .badRequest] static let amiibosThrows: [AmiiboServiceError] = [.badRequest, .badRequest, .decoding, .decoding, .badRequest, .badRequest, .badRequest, .badRequest, .badRequest]
/// A list of number of items that are expected from the `assertAmiiboSeries` assertion. /// A list of number of items that are expected from the `assertAmiiboSeries` assertion.
@@ -684,13 +684,13 @@ enum Output {
private extension Int { private extension Int {
/// A number that represents the total number of amiibo items currently available at the live service. /// A number that represents the total number of amiibo items currently available at the live service.
static let totalAmiibos = 889 static let totalAmiibos = 927
/// A number that represents the total number of amiibo series currently available at the live service. /// A number that represents the total number of amiibo series currently available at the live service.
static let totalAmiiboSeries = 29 static let totalAmiiboSeries = 29
/// A number that represents the total number of amiibo types currently available at the live service. /// A number that represents the total number of amiibo types currently available at the live service.
static let totalAmiiboTypes = 5 static let totalAmiiboTypes = 5
/// A number that represents the total number of game characters currently available at the live service. /// A number that represents the total number of game characters currently available at the live service.
static let totalGameCharacters = 668 static let totalGameCharacters = 675
/// A number that represents the total number of game series currently available at the live service. /// A number that represents the total number of game series currently available at the live service.
static let totalGameSeries = 117 static let totalGameSeries = 117
} }