You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ji...@apache.org on 2019/05/13 11:08:29 UTC

[couchdb-b64url] branch jenkins-fixup-eunit updated: fixup

This is an automated email from the ASF dual-hosted git repository.

jiangphcn pushed a commit to branch jenkins-fixup-eunit
in repository https://gitbox.apache.org/repos/asf/couchdb-b64url.git


The following commit(s) were added to refs/heads/jenkins-fixup-eunit by this push:
     new 3f18b8d  fixup
3f18b8d is described below

commit 3f18b8def665f6aeecd2cfd642b70d3fb6f5116d
Author: jiangph <ji...@cn.ibm.com>
AuthorDate: Mon May 13 19:07:42 2019 +0800

    fixup
---
 test/b64url_tests.erl | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/test/b64url_tests.erl b/test/b64url_tests.erl
index 18209e1..08b2808 100644
--- a/test/b64url_tests.erl
+++ b/test/b64url_tests.erl
@@ -30,15 +30,6 @@ encode_iolist_test() ->
     end, lists:seq(1, ?NUM_TESTS)).
 
 
-decode_binary_test() ->
-    lists:foreach(fun(_) ->
-        Bin = gen_binary(),
-        B64UrlBin = couch_encode_base64url(Bin),
-        Dec = b64url:decode(B64UrlBin),
-        ?assertEqual(Bin, Dec)
-    end, lists:seq(1, ?NUM_TESTS)).
-
-
 decode_binary_error_test() ->
     lists:foreach(fun(_) ->
         {ErrBin, BlockPos} = bad_binary(),