diff options
author | Franck Cuny <franck@fcuny.net> | 2022-08-15 17:48:41 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-08-15 17:51:48 -0700 |
commit | 57503ec7cdb6b9c49c7236580b1cffc982293c0f (patch) | |
tree | dec6b618a3dc8f6d1bcf74ed8b23b21c80bc093b | |
parent | fix(shellcheck): apply recommendations from shellcheck (diff) | |
download | world-57503ec7cdb6b9c49c7236580b1cffc982293c0f.tar.gz |
fix(fmt): apply gofmt on some files
Change-Id: I9d1ff1b7de5cb89ffcf40bc91e794f7ff420c1e8 Reviewed-on: https://cl.fcuny.net/c/world/+/717 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to '')
-rw-r--r-- | tools/ipconverter/main_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/ipconverter/main_test.go b/tools/ipconverter/main_test.go index 394dc28..10d09ab 100644 --- a/tools/ipconverter/main_test.go +++ b/tools/ipconverter/main_test.go @@ -26,11 +26,10 @@ func TestIPtoInt(t *testing.T) { } } - func TestIPtoN(t *testing.T) { tests := map[string]string{ "3232235521": "192.168.0.1", - "167772161": "10.0.0.1", + "167772161": "10.0.0.1", } for test := range tests { r, err := IPtoN(test) |