From 0c66ee7eb7e5d2397de4d0bc77f75d66f6af1eb3 Mon Sep 17 00:00:00 2001 From: Carifio24 Date: Fri, 7 Feb 2025 01:42:01 -0500 Subject: [PATCH] Update spell list count in test. --- .../xcshareddata/swiftpm/Package.resolved | 50 ------------------- SpellbookTests/ParsingTests.swift | 2 +- 2 files changed, 1 insertion(+), 51 deletions(-) delete mode 100644 Spellbook.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved diff --git a/Spellbook.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Spellbook.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved deleted file mode 100644 index 769d146..0000000 --- a/Spellbook.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ /dev/null @@ -1,50 +0,0 @@ -{ - "originHash" : "cf2216abba0eb2180a6f4d920103cda5fe5206d47e7549dd2680f0c1d4975521", - "pins" : [ - { - "identity" : "actionsheetpicker-3.0", - "kind" : "remoteSourceControl", - "location" : "https://github.com/skywinder/ActionSheetPicker-3.0", - "state" : { - "revision" : "8d82c21036c2f478a47908a7fc107ec7027abcab" - } - }, - { - "identity" : "reswift", - "kind" : "remoteSourceControl", - "location" : "https://github.com/ReSwift/ReSwift.git", - "state" : { - "revision" : "cb5c3c02f652420ef413dea41e13ac5a76b6c0fd", - "version" : "6.1.1" - } - }, - { - "identity" : "simplecheckbox", - "kind" : "remoteSourceControl", - "location" : "https://github.com/BeauNouvelle/SimpleCheckbox.git", - "state" : { - "revision" : "e9791e08a9aac10a1955439bb50dae75dccd0f50", - "version" : "2.5.1" - } - }, - { - "identity" : "swxmlhash", - "kind" : "remoteSourceControl", - "location" : "https://github.com/drmohundro/SWXMLHash.git", - "state" : { - "revision" : "a853604c9e9a83ad9954c7e3d2a565273982471f", - "version" : "7.0.2" - } - }, - { - "identity" : "toast-swift", - "kind" : "remoteSourceControl", - "location" : "https://github.com/scalessec/Toast-Swift", - "state" : { - "revision" : "ddccd20d6fb718448d9b179c454c561653fda7d5", - "version" : "5.1.1" - } - } - ], - "version" : 3 -} diff --git a/SpellbookTests/ParsingTests.swift b/SpellbookTests/ParsingTests.swift index c4f06a2..a5c32c8 100644 --- a/SpellbookTests/ParsingTests.swift +++ b/SpellbookTests/ParsingTests.swift @@ -13,6 +13,6 @@ import XCTest class ParsingTests: XCTestCase { func testParseSpellList() { let state = SpellbookAppState() - XCTAssert(state.spellList.count == 919) + XCTAssert(state.spellList.count == 920) } }