From ab0996353cfa185ddd4e872663141ed3be10641d Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Tue, 22 Oct 2024 16:01:42 +1300 Subject: [PATCH] update --- Blockchain/Tests/BlockchainTests/BlockAuthorTests.swift | 2 -- Blockchain/Tests/BlockchainTests/ValidatorServiceTests.swift | 1 - 2 files changed, 3 deletions(-) diff --git a/Blockchain/Tests/BlockchainTests/BlockAuthorTests.swift b/Blockchain/Tests/BlockchainTests/BlockAuthorTests.swift index b97013b3..68e45888 100644 --- a/Blockchain/Tests/BlockchainTests/BlockAuthorTests.swift +++ b/Blockchain/Tests/BlockchainTests/BlockAuthorTests.swift @@ -115,8 +115,6 @@ struct BlockAuthorTests { #expect(scheduler.storage.value.tasks.count > 0) - // await scheduler.advance(by: 2) - let events = await storeMiddleware.wait() #expect(events.count == 1) #expect(events.first is RuntimeEvents.BlockAuthored) diff --git a/Blockchain/Tests/BlockchainTests/ValidatorServiceTests.swift b/Blockchain/Tests/BlockchainTests/ValidatorServiceTests.swift index 7e91e5e7..c2046e82 100644 --- a/Blockchain/Tests/BlockchainTests/ValidatorServiceTests.swift +++ b/Blockchain/Tests/BlockchainTests/ValidatorServiceTests.swift @@ -89,7 +89,6 @@ struct ValidatorServiceTests { } // try different genesis time offset to ensure edge cases are covered - // @Test(arguments: [1020]) @Test(arguments: [988, 1000, 1003, 1020]) func makeManyBlocks(time: Int) async throws { let (services, validatorService) = try await setup(time: TimeInterval(time))