summaryrefslogtreecommitdiff
path: root/spec/features/projects/files/user_browses_files_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/files/user_browses_files_spec.rb')
-rw-r--r--spec/features/projects/files/user_browses_files_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/projects/files/user_browses_files_spec.rb b/spec/features/projects/files/user_browses_files_spec.rb
index 66268355345..c12f835c567 100644
--- a/spec/features/projects/files/user_browses_files_spec.rb
+++ b/spec/features/projects/files/user_browses_files_spec.rb
@@ -113,7 +113,7 @@ describe "User browses files" do
click_link("Users")
expect(current_path).to eq(project_blob_path(project, "markdown/doc/api/users.md"))
- expect(page).to have_content("Get a list of users.")
+ expect(page).to have_content(_("Get a list of users."))
page.go_back
@@ -161,7 +161,7 @@ describe "User browses files" do
click_link("Users")
expect(current_path).to eq(project_blob_path(project, "markdown/doc/api/users.md"))
- expect(page).to have_content("List users").and have_content("Get a list of users.")
+ expect(page).to have_content("List users").and have_content(_("Get a list of users."))
end
end
end
@@ -189,7 +189,7 @@ describe "User browses files" do
visit(project_tree_path(project, "'test'"))
- expect(page).to have_css(".tree-commit-link").and have_no_content("Loading commit data...")
+ expect(page).to have_css(".tree-commit-link").and have_no_content(_("Loading commit data..."))
end
it "shows the code with a leading dot in the directory", :js do
@@ -201,7 +201,7 @@ describe "User browses files" do
visit(project_tree_path(project, "fix/.testdir"))
- expect(page).to have_css(".tree-commit-link").and have_no_content("Loading commit data...")
+ expect(page).to have_css(".tree-commit-link").and have_no_content(_("Loading commit data..."))
end
it "does not show the permalink link" do