summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-04-13 14:59:35 +0200
committerRémy Coutable <remy@rymai.me>2017-04-14 15:20:55 +0200
commit41b71efd51f7c645ba83099ba53efcba9d5b5660 (patch)
tree6747bcfaac5a18e97059886862f5247d788399e1
parent4b1e25faae5037e62fc9534ef4925e55f42dc9e1 (diff)
downloadgitlab-ce-41b71efd51f7c645ba83099ba53efcba9d5b5660.tar.gz
Fix `last_activity_at` to `last_activity_on`
Signed-off-by: Rémy Coutable <remy@rymai.me>
-rw-r--r--spec/requests/git_http_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/git_http_spec.rb b/spec/requests/git_http_spec.rb
index d4de1b339ec..7124a3caff3 100644
--- a/spec/requests/git_http_spec.rb
+++ b/spec/requests/git_http_spec.rb
@@ -160,7 +160,7 @@ describe 'Git HTTP requests', lib: true do
it 'updates the user last activity' do
download(path, {}) do |response|
- expect(user.reload.last_activity_at).not_to be_nil
+ expect(user.reload.last_activity_on).not_to be_nil
end
end
end