Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/Spry/Spyable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private var callsMapTable: NSMapTable<AnyObject, RecordedCallsDictionary> = NSMa

- Note: The `Spryable` protocol exists as a convenience to conform to both `Spyable` and `Stubbable` at the same time.
*/
public protocol Spyable: class {
public protocol Spyable: AnyObject {

// MARK: Instance

Expand Down
2 changes: 1 addition & 1 deletion Sources/Spry/Stubbable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private var stubsMapTable: NSMapTable<AnyObject, StubsDictionary> = NSMapTable.w

- Note: The `Spryable` protocol exists as a convenience to conform to both `Spyable` and `Stubbable` at the same time.
*/
public protocol Stubbable: class {
public protocol Stubbable: AnyObject {

// MARK: - Instance

Expand Down