Skip to content

Commit 887f868

Browse files
author
Ryan Gard
committed
Merge pull request #152 from phongdly/FM-3706/Create_database_with_optional_compatibility_breaks
(FM-3706)Create database with optional compatibility breaks CI
2 parents 07df29f + d76c438 commit 887f868

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/acceptance/sqlserver_database_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def run_sql_query_opts (query, expected_row_count)
105105
admin_pass => 'Pupp3t1@',
106106
}
107107
sqlserver::database{'#{@db_name}':
108-
compatibility => 120,
108+
compatibility => 100,
109109
}
110110
sqlserver_tsql{'testsqlserver_tsql':
111111
instance => 'MSSQLSERVER',
@@ -124,7 +124,7 @@ def run_sql_query_opts (query, expected_row_count)
124124
query = "SELECT name AS Database_Name, compatibility_level
125125
FROM sys.databases
126126
WHERE name = '#{@db_name}'
127-
AND compatibility_level = '120';"
127+
AND compatibility_level = '100';"
128128

129129
run_sql_query(host, run_sql_query_opts(query, 1))
130130
end

0 commit comments

Comments
 (0)