File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 129129 expect (error).to (beNil ());
130130
131131 __block BOOL progressCalled = NO ;
132- BOOL success = [repository applyStashAtIndex: 0 flags: GTRepositoryStashApplyFlagDefault error: &error progressBlock: ^void (GTRepositoryStashApplyProgress step, BOOL *stop) {
132+ BOOL success = [repository applyStashAtIndex: 0 flags: GTRepositoryStashApplyFlagDefault checkoutOptions: nil error: &error progressBlock: ^void (GTRepositoryStashApplyProgress step, BOOL *stop) {
133133 progressCalled = YES ;
134134 }];
135135 expect (@(success)).to (beTruthy ());
162162 lastStashIndex = index;
163163 }];
164164
165- success = [repository applyStashAtIndex: (lastStashIndex + 1 ) flags: GTRepositoryStashApplyFlagDefault error: &error progressBlock: nil ];
165+ success = [repository applyStashAtIndex: (lastStashIndex + 1 ) flags: GTRepositoryStashApplyFlagDefault checkoutOptions: nil error: &error progressBlock: nil ];
166166 expect (@(success)).to (beFalsy ());
167167 expect (error).notTo (beNil ());
168168 expect (error.domain ).to (equal (GTGitErrorDomain));
186186
187187 expect (@([@" barfoo" writeToURL: [repository.fileURL URLByAppendingPathComponent: @" new-test-file" ] atomically: YES encoding: NSUTF8StringEncoding error: NULL ])).to (beTruthy ());
188188
189- BOOL success = [repository applyStashAtIndex: 0 flags: GTRepositoryStashApplyFlagDefault error: &error progressBlock: nil ];
189+ BOOL success = [repository applyStashAtIndex: 0 flags: GTRepositoryStashApplyFlagDefault checkoutOptions: nil error: &error progressBlock: nil ];
190190 expect (@(success)).to (beFalsy ());
191191 expect (error).notTo (beNil ());
192192
You can’t perform that action at this time.
0 commit comments