Change method names in HTML5 Lib test class

Change Fixture to Dctionary
This commit is contained in:
iska
2014-10-26 23:43:21 +01:00
parent a00c3a27d7
commit f2993181a8
3 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ static NSString * const HTML5LibTests = @"html5lib-tests";
NSMutableArray *tests = [NSMutableArray array];
for (NSDictionary *test in jsonTests) {
[tests addObject:[[HTML5LibTest alloc] initWithFixture:test]];
[tests addObject:[[HTML5LibTest alloc] initWithTestDictionary:test]];
}
return tests;
}