From 1c47cb2cfdac3f3070093f601ea096970899afb2 Mon Sep 17 00:00:00 2001 From: Yoann Chaudet Date: Mon, 5 Aug 2024 12:04:45 -0700 Subject: [PATCH] Fix improperly bound regex --- spec/spec_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index bf8614da..07d6bada 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -16,7 +16,7 @@ # Stub all GitHub API requests so they come back empty. config.before(:each) do - stub_request(:get, /api.github.com/) + stub_request(:get, /api\.github.com/) .to_return(:status => 200, :body => "{}", :headers => {}) end end