[test] Adjusting test files where class syntax is used for protocol inheritance

This commit is contained in:
Luciano Almeida
2020-11-29 21:43:50 -03:00
parent e3373a9efd
commit c29fbb5528
9 changed files with 10 additions and 10 deletions

View File

@@ -15,7 +15,7 @@ protocol OtherProtocol {
var otherProperty: String { get }
}
protocol OtherClassProtocol : class {
protocol OtherClassProtocol : AnyObject {
var otherClassProperty: String { get }
}