From 543cc75b7506a75f9f3cde37f8427fcfbee7df68 Mon Sep 17 00:00:00 2001 From: Sean DuBois Date: Mon, 29 Jul 2024 23:21:54 -0400 Subject: [PATCH] test --- dummy_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dummy_test.go b/dummy_test.go index a4d155d..1825861 100644 --- a/dummy_test.go +++ b/dummy_test.go @@ -4,6 +4,7 @@ package sandbox import ( + "fmt" "testing" _ "golang.org/x/net/nettest" @@ -12,4 +13,5 @@ import ( func TestDummy(*testing.T) { p := &PublicAPI{} p.PublicFunc() + fmt.Println("test") }