Commit d60a59b0 authored by Stefan Hanreich's avatar Stefan Hanreich

remove trailing comma

parent fde8f9d7
...@@ -1042,7 +1042,7 @@ describe Ci::Build, :models do ...@@ -1042,7 +1042,7 @@ describe Ci::Build, :models do
'a' * 64 => 'a' * 63, 'a' * 64 => 'a' * 63,
'FOO' => 'foo', 'FOO' => 'foo',
'-' + 'a' * 61 + '-' => 'a' * 61, '-' + 'a' * 61 + '-' => 'a' * 61,
'a' * 62 + ' ' => 'a' * 62, 'a' * 62 + ' ' => 'a' * 62
}.each do |ref, slug| }.each do |ref, slug|
it "transforms #{ref} to #{slug}" do it "transforms #{ref} to #{slug}" do
build.ref = ref build.ref = ref
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment