fixes provider_spec to match real data input format
Signed-off-by: Collin McNeese <[email protected]>
This commit is contained in:
@@ -20,8 +20,8 @@ RSpec.describe Provider do
|
|||||||
let(:labels) do
|
let(:labels) do
|
||||||
<<~LABELS
|
<<~LABELS
|
||||||
[
|
[
|
||||||
jenkins,
|
"jenkins",
|
||||||
azure-devops
|
"azure-devops"
|
||||||
]
|
]
|
||||||
LABELS
|
LABELS
|
||||||
end
|
end
|
||||||
@@ -33,7 +33,7 @@ RSpec.describe Provider do
|
|||||||
let(:labels) do
|
let(:labels) do
|
||||||
<<~LABELS
|
<<~LABELS
|
||||||
[
|
[
|
||||||
something-unsupported
|
"something-unsupported"
|
||||||
]
|
]
|
||||||
LABELS
|
LABELS
|
||||||
end
|
end
|
||||||
@@ -45,7 +45,7 @@ RSpec.describe Provider do
|
|||||||
let(:labels) do
|
let(:labels) do
|
||||||
<<~LABELS
|
<<~LABELS
|
||||||
[
|
[
|
||||||
jenkins
|
"jenkins"
|
||||||
]
|
]
|
||||||
LABELS
|
LABELS
|
||||||
end
|
end
|
||||||
@@ -59,7 +59,7 @@ RSpec.describe Provider do
|
|||||||
let(:labels) do
|
let(:labels) do
|
||||||
<<~LABELS
|
<<~LABELS
|
||||||
[
|
[
|
||||||
gitlab
|
"gitlab"
|
||||||
]
|
]
|
||||||
LABELS
|
LABELS
|
||||||
end
|
end
|
||||||
@@ -73,7 +73,7 @@ RSpec.describe Provider do
|
|||||||
let(:labels) do
|
let(:labels) do
|
||||||
<<~LABELS
|
<<~LABELS
|
||||||
[
|
[
|
||||||
travis-ci
|
"travis-ci"
|
||||||
]
|
]
|
||||||
LABELS
|
LABELS
|
||||||
end
|
end
|
||||||
@@ -87,7 +87,7 @@ RSpec.describe Provider do
|
|||||||
let(:labels) do
|
let(:labels) do
|
||||||
<<~LABELS
|
<<~LABELS
|
||||||
[
|
[
|
||||||
azure-devops
|
"azure-devops"
|
||||||
]
|
]
|
||||||
LABELS
|
LABELS
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user