From c032ab7bc771b1e9500a243a7e749a683b7afc5b Mon Sep 17 00:00:00 2001 From: Matias Bzurovski Date: Fri, 29 Nov 2024 13:12:39 +0100 Subject: [PATCH] fix tests --- .../Tests/TestCases/Prelude/NonFungibleGlobalIDTests.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apple/Tests/TestCases/Prelude/NonFungibleGlobalIDTests.swift b/apple/Tests/TestCases/Prelude/NonFungibleGlobalIDTests.swift index 476935ff2..9948d84e3 100644 --- a/apple/Tests/TestCases/Prelude/NonFungibleGlobalIDTests.swift +++ b/apple/Tests/TestCases/Prelude/NonFungibleGlobalIDTests.swift @@ -25,14 +25,16 @@ final class NonFungibleGlobalIDTests: IdentifiableByStringProtocolTest"), + // swiftformat:disable redundantInit + try SUT.init("resource_rdx1nfyg2f68jw7hfdlg5hzvd8ylsa7e0kjl68t5t62v3ttamtejc9wlxa:"), SUT.sample ) } func test_invalid_from_str() { XCTAssertThrowsError( - try SUT("super invalid string!!!!") + // swiftformat:disable redundantInit + try SUT.init("super invalid string!!!!") ) }