From 3c11999ba3ca8992a8c9b4b00db2ba556276e18a Mon Sep 17 00:00:00 2001 From: hhhjort <31041505+hhhjort@users.noreply.github.com> Date: Wed, 19 Sep 2018 10:16:06 -0400 Subject: [PATCH] Fixes a test to match the IP cleaning patch (#689) --- exchange/gdpr_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchange/gdpr_test.go b/exchange/gdpr_test.go index b6783f065dd..fd7147085dc 100644 --- a/exchange/gdpr_test.go +++ b/exchange/gdpr_test.go @@ -114,7 +114,7 @@ func TestCleanPIAmp(t *testing.T) { // Verify cleaned values assert.Equal(t, "abc123", bidReqCopy.User.BuyerUID) assertStringEmpty(t, bidReqCopy.Device.DIDMD5) - assert.Equal(t, "12.123.56.000", bidReqCopy.Device.IP) + assert.Equal(t, "12.123.56.0", bidReqCopy.Device.IP) assert.Equal(t, "2001:0db8:85a3:0000:0000:8a2e:0370:0000", bidReqCopy.Device.IPv6) assert.Equal(t, 123.46, bidReqCopy.Device.Geo.Lat) assert.Equal(t, 7.98, bidReqCopy.Device.Geo.Lon)