From ce964404a2048215f8a61a8b43532d8bb516ff19 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Fri, 23 Aug 2019 17:07:53 -0700 Subject: [PATCH] test: handle murmur3 rename --- test/sharness/t0275-cid-security.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sharness/t0275-cid-security.sh b/test/sharness/t0275-cid-security.sh index 3bf5181dc08..34e6e3192f3 100755 --- a/test/sharness/t0275-cid-security.sh +++ b/test/sharness/t0275-cid-security.sh @@ -11,11 +11,11 @@ test_description="Cid Security" test_init_ipfs test_expect_success "adding using unsafe function fails with error" ' - echo foo | test_must_fail ipfs add --hash murmur3 2>add_out + echo foo | test_must_fail ipfs add --hash murmur3-128 2>add_out ' test_expect_success "error reason is pointed out" ' - grep "insecure hash functions not allowed" add_out + grep "insecure hash functions not allowed" add_out || test_fsh cat add_out ' test_expect_success "adding using too short of a hash function gives out an error" '