Skip to content

Commit 79a17cc

Browse files
fix: removed test testcase
1 parent a699de9 commit 79a17cc

1 file changed

Lines changed: 0 additions & 27 deletions

File tree

ContentstackTest/ContentstackTest.m

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2408,31 +2408,4 @@ - (void)testVariantHeaders {
24082408
}];
24092409
}
24102410

2411-
-(void)testValueForKey1 {
2412-
2413-
XCTestExpectation *expectation = [self expectationWithDescription:@"Value For Key"];
2414-
2415-
ContentType* csForm = [csStack contentTypeWithName:@"source"];
2416-
2417-
Entry *entry = [csForm entryWithUID:_sourceUid];
2418-
2419-
[entry fetch:^(ResponseType type, NSError *error) {
2420-
if (error) {
2421-
XCTFail(@"~ ERR: %@, Message = %@", error.userInfo, error.description);
2422-
}else {
2423-
NSDictionary *dicti = [entry valueForUndefinedKey:@"short_description"];
2424-
if (dicti) {
2425-
XCTAssert(YES, @"Pass");
2426-
}
2427-
else {
2428-
XCTFail(@"~ ERR: %@, Message = %@", error.userInfo, error.description);
2429-
}
2430-
}
2431-
[expectation fulfill];
2432-
}];
2433-
2434-
[self waitForRequest];
2435-
2436-
}
2437-
24382411
@end

0 commit comments

Comments
 (0)