From 7434ef12dbed39a512a3b7cfbee37556f3a1c8e9 Mon Sep 17 00:00:00 2001 From: lyx0 <66651385+lyx0@users.noreply.github.com> Date: Mon, 13 Dec 2021 17:43:46 +0100 Subject: [PATCH] fix failing tests since the username was not found --- pkg/api/ivr/userid_test.go | 2 +- pkg/api/ivr/whois_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/api/ivr/userid_test.go b/pkg/api/ivr/userid_test.go index 03a7ecd..2f2f060 100644 --- a/pkg/api/ivr/userid_test.go +++ b/pkg/api/ivr/userid_test.go @@ -4,7 +4,7 @@ import "testing" func TestUserid(t *testing.T) { t.Run("returns a link to a users profile picture", func(t *testing.T) { - request := Userid("nouryqt") + request := Userid("nouryxd") response := "31437432" got := request diff --git a/pkg/api/ivr/whois_test.go b/pkg/api/ivr/whois_test.go index 57b03c8..87732c9 100644 --- a/pkg/api/ivr/whois_test.go +++ b/pkg/api/ivr/whois_test.go @@ -4,8 +4,8 @@ import "testing" func TestWhois(t *testing.T) { t.Run("returns a link to a users profile picture", func(t *testing.T) { - request := Whois("nouryqt") - response := "User: Nouryqt, ID: 31437432, Created on: 2012-06-18, Color: #00F2FB, Affiliate: false, Partner: false, Staff: false, Admin: false, Bot: false, Bio: me :)" + request := Whois("Nouryxd") + response := "User: Nouryxd, ID: 31437432, Created on: 2012-06-18, Color: #00F2FB, Affiliate: false, Partner: false, Staff: false, Admin: false, Bot: false, Bio: It's good to be king. Wait, maybe. I think maybe I'm just like a little bizarre little person who walks back and forth. Whatever, you know, but..." got := request want := response