diff --git a/tests/exp/community_exp_test.go b/tests/exp/community_exp_test.go index a050150..7a35f98 100644 --- a/tests/exp/community_exp_test.go +++ b/tests/exp/community_exp_test.go @@ -1,13 +1,11 @@ package tests import ( - TSGO "github.com/the-egg-corp/thundergo/experimental" - - //TSGOV1 "github.com/the-egg-corp/thundergo/v1" "testing" + + TSGO "github.com/the-egg-corp/thundergo/experimental" ) -// region Experimental Tests func TestCommunityExp(t *testing.T) { comm, found, _ := TSGO.GetCommunity("lethal-company") @@ -19,7 +17,6 @@ func TestCommunityExp(t *testing.T) { if err != nil { t.Fatal(err) } - //util.PrettyPrint(categories) } func TestCommunitiesExp(t *testing.T) { @@ -28,8 +25,4 @@ func TestCommunitiesExp(t *testing.T) { if err != nil { t.Error("Could not get list of communities!") } - - //util.PrettyPrint(comms) } - -//endregion diff --git a/tests/v1/package_v1_test.go b/tests/v1/package_v1_test.go index 00c290c..2de9ed1 100644 --- a/tests/v1/package_v1_test.go +++ b/tests/v1/package_v1_test.go @@ -122,7 +122,6 @@ func TestDownloadVersion(t *testing.T) { t.Fatalf("error downloading version:\n%v", err) } - //println(data) } func TestPackageFromCommunity(t *testing.T) { @@ -130,6 +129,4 @@ func TestPackageFromCommunity(t *testing.T) { if pkg == nil { t.Fatal("package not found in community") } - - //util.PrettyPrint(pkg) }