Skip to content

Commit

Permalink
fix: not nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
IanKrieger committed Sep 25, 2023
1 parent 212d230 commit 647c49a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/user/library/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ describe("pricing logic (read)", () => {

it("should convert per-impression values to CPM when populating CampaignForm", () => {
const campaign = produce(BASE_CPM_CAMPAIGN_FRAGMENT, (c) => {
(c.adSets ?? []).forEach((adset) => {
c.adSets.forEach((adset) => {
adset.billingType = "cpm";
adset.price = "0.007";
});
Expand Down

0 comments on commit 647c49a

Please sign in to comment.