webshit: add missing test update

This commit is contained in:
Chris Sexton 2019-08-08 10:19:52 -04:00
parent 705aa294d5
commit 4ef471eff2
1 changed files with 3 additions and 3 deletions

View File

@ -62,11 +62,11 @@ func TestWebshit_GetBalance(t *testing.T) {
func TestWebshit_checkBids(t *testing.T) { func TestWebshit_checkBids(t *testing.T) {
w := makeWS(t) w := makeWS(t)
bids := []Bid{ bids := []Bid{
Bid{User: "foo", Title: "bar", URL: "baz", Bid: 10}, Bid{User: "foo", Title: "bar", URL: "https://baz/?id=1", Bid: 10},
Bid{User: "foo", Title: "bar2", URL: "baz2", Bid: 10}, Bid{User: "foo", Title: "bar2", URL: "http://baz/?id=2", Bid: 10},
} }
storyMap := map[string]Story{ storyMap := map[string]Story{
"baz": Story{Title: "bar", URL: "baz"}, "1": Story{Title: "bar", URL: "http://baz/?id=1"},
} }
result := w.checkBids(bids, storyMap) result := w.checkBids(bids, storyMap)
assert.Len(t, result, 1) assert.Len(t, result, 1)