From fdf1e16adb69567277abd5a5fc9ec4e4f9d7d03c Mon Sep 17 00:00:00 2001 From: Yoann Chaudet Date: Tue, 6 Aug 2024 10:31:59 -0700 Subject: [PATCH] Escape all the dots --- 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 07d6bada..ef7e9e91 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