Lint Tests Passing
All checks were successful
Continuous Integration / CI (push) Successful in 1m40s

Made lint tests pass
This commit is contained in:
sjc
2025-05-08 00:36:03 -04:00
parent 1f5d003470
commit ada6d2d440
14 changed files with 39 additions and 39 deletions

View File

@@ -8,7 +8,7 @@ import (
func TestFetchData(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
rw.Write([]byte(`{"data": "test"}`))
_,_ = rw.Write([]byte(`{"data": "test"}`))
}))
defer server.Close()
@@ -26,7 +26,7 @@ func TestFetchData(t *testing.T) {
func TestFetchDataAndUnmarshal(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
rw.Write([]byte(`{"data": "test"}`))
_,_ = rw.Write([]byte(`{"data": "test"}`))
}))
defer server.Close()