On Wed, Dec 11, 2019 at 7:20 AM Denton Liu <liu.denton@xxxxxxxxx> wrote: > > +test_expect_success "git rebase --fork-point with ambigous refname" " > > + git checkout master && > > + git checkout -b one && > > + git checkout side && > > + git tag one && > > + test_must_fail git rebase --fork-point --onto D one > > +" > > nit: use double-quotes instead of single-quotes to surround both the > test case name and the actual code itself. Denton meant to say that you should single-quote the test title and test body (not double-quote). In this particular test, the distinction doesn't matter presently, though it could matter if the test is later changed. In particular, if the test does any sort of variable interpolation (such as $foo), then the single quotes ensure that the interpolation will occur when the test is actually run (which is almost always what is desired) rather than at the time the test is defined (which is almost never wanted).