diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2020-07-30 01:14:28 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-07-30 18:16:49 +0200 |
commit | e023ff0691ca207d421a0e75ea23c132ada9142a (patch) | |
tree | 442aa0f3908245f1ea02f3dc92efe200b6c315d4 /t/t5504-fetch-receive-strict.sh | |
parent | docs: add documentation for extensions.objectFormat (diff) | |
download | git-e023ff0691ca207d421a0e75ea23c132ada9142a.tar.xz git-e023ff0691ca207d421a0e75ea23c132ada9142a.zip |
t: remove test_oid_init in tests
Now that we call test_oid_init in the setup for all test scripts,
there's no point in calling it individually. Remove all of the places
where we've done so to help keep tests tidy.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5504-fetch-receive-strict.sh')
-rwxr-xr-x | t/t5504-fetch-receive-strict.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/t/t5504-fetch-receive-strict.sh b/t/t5504-fetch-receive-strict.sh index a32efe2b6c..1a16ac4c0d 100755 --- a/t/t5504-fetch-receive-strict.sh +++ b/t/t5504-fetch-receive-strict.sh @@ -4,7 +4,6 @@ test_description='fetch/receive strict mode' . ./test-lib.sh test_expect_success 'setup and inject "corrupt or missing" object' ' - test_oid_init && echo hello >greetings && git add greetings && git commit -m greetings && |