We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0454aeb commit b602104Copy full SHA for b602104
ObjectiveGitTests/GTSubmoduleSpec.m
@@ -246,7 +246,8 @@
246
247
__block NSError *error = nil;
248
expect(@([submodule sync:&error])).to(beTruthy());
249
- expect([config stringForKey:configKey]).to(equal(@"../Test_App"));
+ NSString *submoduleURL = [[[repo.fileURL URLByAppendingPathComponent:@"../Test_App"] URLByResolvingSymlinksInPath] path];
250
+ expect([config stringForKey:configKey]).to(equal(submoduleURL));
251
});
252
253
0 commit comments