From b7bb7c6ae0de34aee1bd633edabf411e18fd161f Mon Sep 17 00:00:00 2001 From: dudaodong Date: Wed, 1 Dec 2021 20:38:54 +0800 Subject: [PATCH] fmt: gofmt random_test.go --- README.md | 2 +- random/random_test.go | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 662c4ea..b695dbb 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ func main() { } ``` -- 函数列表: +- Function list: ```go func CreateFile(path string) bool // create a file in path diff --git a/random/random_test.go b/random/random_test.go index b248bcf..4a8df6e 100644 --- a/random/random_test.go +++ b/random/random_test.go @@ -1,3 +1,11 @@ +/* + * @Descripttion: + * @version: v1.0.0 + * @Author: dudaodong@kingsoft.com + * @Date: 2021-11-29 11:43:28 + * @LastEditors: dudaodong@kingsoft.com + * @LastEditTime: 2021-12-01 18:05:29 + */ package random import ( @@ -60,6 +68,4 @@ func TestRandBytes(t *testing.T) { t.FailNow() } - - }