diff --git a/main.go b/main.go index 3362a1b..dc08a05 100644 --- a/main.go +++ b/main.go @@ -18,11 +18,11 @@ func main() { } func getFirstHash() string { - return "8743b52063cd84097a65d1633f5c74f5" + return "8743b52063cd84097a65d1633f5c74f7" } func getSecondHash() string { - return "0cc175b9c0f1b6a831c399e269772661" + return "0cc175b9c0f1b6a831c399e269772663" } func handlerFirstHash(w http.ResponseWriter, r *http.Request) { diff --git a/main_test.go b/main_test.go index e4f4448..b0eaf29 100644 --- a/main_test.go +++ b/main_test.go @@ -53,7 +53,7 @@ func TestHandlerSecondHash(t *testing.T) { } func TestGetSecondHash(t *testing.T) { - expected := "0cc175b9c0f1b6a831c399e269772661" + expected := "0cc175b9c0f1b6a831c399e269772663" result := getSecondHash() if result != expected { t.Errorf("getSecondHash() failed, expected %s but got %s", expected, result) @@ -61,7 +61,7 @@ func TestGetSecondHash(t *testing.T) { } func TestGeFirstHash(t *testing.T) { - expected := "8743b52063cd84097a65d1633f5c74f5" + expected := "8743b52063cd84097a65d1633f5c74f7" result := getFirstHash() if result != expected { t.Errorf("getFirstHash() failed, expected %s but got %s", expected, result)