Update target todo test to use a public project

This commit is contained in:
DJ Mountney 2016-06-02 12:06:24 -07:00
parent b173ea2bd4
commit 14a9b0d7dd
2 changed files with 4 additions and 1 deletions

View File

@ -31,6 +31,9 @@ v 8.9.0 (unreleased)
- Cache assigned issue and merge request counts in sidebar nav
- Cache project build count in sidebar nav
v 8.8.4
- Fix todos page throwing errors when you have a project pending deletion
v 8.8.3
- Fix 404 page when viewing TODOs that contain milestones or labels in different projects. !4312
- Fixed JS error when trying to remove discussion form. !4303

View File

@ -3,7 +3,7 @@ require 'rails_helper'
feature 'Todo target states', feature: true do
let(:user) { create(:user) }
let(:author) { create(:user) }
let(:project) { create(:project) }
let(:project) { create(:project, visibility_level: Gitlab::VisibilityLevel::PUBLIC) }
before do
login_as user