Skip to content

Commit 63ce54d

Browse files
committed
test: - Change vocabulary from drop to remove
1 parent d433c83 commit 63ce54d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Task/Recurrence.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ describe('identicalTo', () => {
229229
});
230230
});
231231

232-
describe('Recurrence - with dropScheduledDateOnRecurrence', () => {
233-
it('drops the scheduledDate when dropScheduledDate is true', () => {
232+
describe('Recurrence - with removeScheduledDateOnRecurrence', () => {
233+
it('removes the scheduledDate when removeScheduledDate is true', () => {
234234
// Arrange
235235
const recurrence = Recurrence.fromText({
236236
recurrenceRuleText: 'every month',
@@ -250,7 +250,7 @@ describe('Recurrence - with dropScheduledDateOnRecurrence', () => {
250250
expect(next!.dueDate).toEqualMoment(moment('2022-02-10'));
251251
});
252252

253-
it('does not drop the scheduledDate when it is the only date', () => {
253+
it('does not remove the scheduledDate when it is the only date', () => {
254254
// Arrange
255255
const recurrence = Recurrence.fromText({
256256
recurrenceRuleText: 'every month',

0 commit comments

Comments
 (0)