Skip to content

Commit

Permalink
adapt spec
Browse files Browse the repository at this point in the history
  • Loading branch information
oma-s committed Jan 16, 2024
1 parent 5e24b11 commit 8e612be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/models/task_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@
expect(task.status).to eq "Done"
end

it "deletes tasks that are not in the list" do
it "keeps tasks that are not in the list anymore" do
task = tasks :done

Task.sync_with_github

expect(Task.exists?(task.id)).to eq false
expect(Task.exists?(task.id)).to eq true
end

it "only updates finished_storypoints" do
Expand Down

0 comments on commit 8e612be

Please sign in to comment.