Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kmycode committed Oct 30, 2023
1 parent 8cd578f commit e41cb35
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec/requests/api/v1/lists_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
Fabricate(:list, account: user.account, title: 'second list', replies_policy: :list),
Fabricate(:list, account: user.account, title: 'third list', replies_policy: :none),
Fabricate(:list, account: user.account, title: 'fourth list', exclusive: true),
Fabricate(:list, account: user.account, title: 'fourth list', notify: true),
]
end

Expand All @@ -30,6 +31,7 @@
replies_policy: list.replies_policy,
exclusive: list.exclusive,
antennas: list.antennas,
notify: list.notify,
}
end
end
Expand Down Expand Up @@ -67,6 +69,7 @@
replies_policy: list.replies_policy,
exclusive: list.exclusive,
antennas: list.antennas,
notify: list.notify,
})
end

Expand Down Expand Up @@ -149,6 +152,7 @@
replies_policy: list.replies_policy,
exclusive: list.exclusive,
antennas: list.antennas,
notify: list.notify,
})
end

Expand Down

0 comments on commit e41cb35

Please sign in to comment.