Skip to content

Commit d348559

Browse files
committed
(MODULES-5126) Use integer in acceptance test
Previously the user acceptance test setup a database with a string for the compatibility level, however the resource expects an Integer. This commit changes the value to an expected type.
1 parent 0793ade commit d348559

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/acceptance/sqlserver_user_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def ensure_sqlserver_database(db_name, ensure_val = 'present')
2525
sqlserver::database{ '#{db_name}':
2626
instance => 'MSSQLSERVER',
2727
collation_name => 'SQL_Estonian_CP1257_CS_AS',
28-
compatibility => '100',
28+
compatibility => 100,
2929
containment => 'PARTIAL',
3030
require => Sqlserver::Sp_configure['spconfig1']
3131
}

0 commit comments

Comments
 (0)