summaryrefslogtreecommitdiff
path: root/spec/support/stub_version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/stub_version.rb')
-rw-r--r--spec/support/stub_version.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/stub_version.rb b/spec/support/stub_version.rb
index 594ab64e7c6..1a106b7a3fb 100644
--- a/spec/support/stub_version.rb
+++ b/spec/support/stub_version.rb
@@ -2,7 +2,7 @@
module StubVersion
def stub_version(version, revision)
- stub_const('Gitlab::VERSION', version)
+ stub_const("Gitlab::VERSION", version)
allow(Gitlab).to receive(:revision).and_return(revision)
end
end