From d73bf86cf7a7b7a52ccacd85b4de0a430bc39fcc Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Thu, 25 Jan 2018 21:19:44 -0800 Subject: [PATCH] note issue for failing dht test cases License: MIT Signed-off-by: Steven Allen --- test/sharness/t0170-dht.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sharness/t0170-dht.sh b/test/sharness/t0170-dht.sh index bb1d54b12..29a709d70 100755 --- a/test/sharness/t0170-dht.sh +++ b/test/sharness/t0170-dht.sh @@ -41,13 +41,13 @@ test_expect_success 'get with good keys' ' ipfsi 1 dht get "/ipns/$PEERID_2" | grep -aq "/ipfs/$HASH" ' -test_expect_failure 'put with bad keys' ' +test_expect_failure 'put with bad keys (issue #4611)' ' ! ipfsi 0 dht put "foo" "bar" && ! ipfsi 0 dht put "/pk/foo" "bar" && ! ipfsi 0 dht put "/ipns/foo" "bar" ' -test_expect_failure 'get with bad keys' ' +test_expect_failure 'get with bad keys (issue #4611)' ' ! ipfsi 0 dht get "foo" && ! ipfsi 0 dht get "/pk/foo" '