Skip to content

Commit f069a4a

Browse files
committed
(maint) fix acceptance require 'erb'
- On OSX, HFS+ is by default case-insensitive, so require 'ERB' will work, even though it should be require 'erb'. When run on Jenkins / linux this will fail w/out proper casing.
1 parent e9daa16 commit f069a4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/acceptance/sqlserver_features_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
require 'spec_helper_acceptance'
2-
require 'ERB'
2+
require 'erb'
33

44
host = find_only_one("sql_host")
55
describe "sqlserver_features", :node => host do

0 commit comments

Comments
 (0)