Skip to content

Commit

Permalink
Remove param keys from names
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterPhilip committed May 11, 2020
1 parent 345b6dd commit 37aa79e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/providers/Lytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ test("LyticsProvider returns client ID", t => {
});

t.is(typeof cid, "object");
t.is(cid.field, "Account ID (cid)");
t.is(cid.field, "Account ID");
t.is(cid.value, "5a4ace928f7786173d963ced2784797f");

});
Expand All @@ -65,7 +65,7 @@ test("LyticsProvider returns data", t => {
});

t.is(typeof ts, "object");
t.is(ts.field, "Timestamp (_ts)");
t.is(ts.field, "Timestamp");
t.is(ts.value, "1589047242522");

});
Expand Down

0 comments on commit 37aa79e

Please sign in to comment.