Skip to content

Commit

Permalink
[misspell] fix a misspell (prebid#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin authored and mansinahar committed Apr 15, 2020
1 parent 988955c commit 6723e63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usersync/cookie_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ func TestTrimCookiesClosestExpirationDates(t *testing.T) {
{maxCookieSize: 0, expAction: "equal"}, //2 unlimited size: don't trim, set
{maxCookieSize: 800, expAction: "trim"}, //3 trim to size and set
{maxCookieSize: 500, expAction: "trim"}, //4 trim to size and set
{maxCookieSize: 200, expAction: "empty"}, //5 insufficient size, trim to zero lenght and set
{maxCookieSize: -100, expAction: "empty"}, //6 invalid size, trim to zero lenght and set
{maxCookieSize: 200, expAction: "empty"}, //5 insufficient size, trim to zero length and set
{maxCookieSize: -100, expAction: "empty"}, //6 invalid size, trim to zero length and set
}
for i := range testCases {
processedCookie := writeThenRead(cookieToSend, testCases[i].maxCookieSize)
Expand Down

0 comments on commit 6723e63

Please sign in to comment.