Skip to content

Commit 6f5348f

Browse files
committed
Make the linter happy
1 parent 7f4ede5 commit 6f5348f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/unit/entitlements/backend/github_org/service_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
expect(logger).to receive(:debug).with("github.fake add_user_to_organization(user=bob, org=kittensinc, role=admin)")
186186
expect(logger).to receive(:debug).with("Setting up GitHub API connection to https://github.fake/api/v3/")
187187
expect(logger).to receive(:warn).with("User bob not found in GitHub instance github.fake, ignoring.")
188-
188+
189189
stub_request(:put, "https://github.fake/api/v3/orgs/kittensinc/memberships/bob").to_return(
190190
status: 404,
191191
headers: {
@@ -196,7 +196,7 @@
196196
"documentation_url" => "https://docs.github.com/rest"
197197
})
198198
)
199-
199+
200200
result = subject.send(:add_user_to_organization, "bob", "admin")
201201
expect(result).to eq(false)
202202
end

0 commit comments

Comments
 (0)