Skip to content

Commit 81df19e

Browse files
author
Oleksii Oliinyk
committed
Fix tests
1 parent 6d12f79 commit 81df19e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/Match3Kit/Controller.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public struct MatchResult<Filling: GridFilling> {
1111
public let spawned: [Index: Grid<Filling>.Cell]
1212
}
1313

14-
public struct Pattern: Equatable, Hashable {
14+
public struct Pattern: Hashable {
1515
public let indices: Set<Index>
1616

1717
public init(indices: Set<Index>) {

Tests/Match3KitTests/MatcherTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ final class MatcherTests: XCTestCase {
1515
case x
1616
case y
1717

18-
var pattern: Pattern {
18+
var pattern: Match3Kit.Pattern {
1919
.init(indices: [])
2020
}
2121
}

0 commit comments

Comments
 (0)