t5616: use correct flag to check object is missing

If we want to check whether an object is missing, the correct flag to pass to rev-list is --ignore-missing; --exclude-promisor-objects will exclude any object that came from the promisor remote, whether it is present or missing. Use the correct flag. Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Jonathan Tan committed Jun 11, 2019 at 14:06 UTC 5718c53d0ab47cc750e05d2af4a401197117c2f0
1 file changed +1 -1
t/t5616-partial-clone.sh
+1 -1
@@ -359,7 +359,7 @@ test_expect_success 'tolerate server sending REF_DELTA against missing promisor
359 --filter=blob:none $HTTPD_URL/one_time_sed/server repo &&
360
361 # Sanity check to ensure that the client does not have that blob.
362 - git -C repo rev-list --objects --exclude-promisor-objects \
362 + git -C repo rev-list --objects --ignore-missing \
363 -- $(cat deltabase) >objlist &&
364 test_line_count = 0 objlist &&
365