Skip to content

Commit bc92b54

Browse files
committed
(maint) Update test checking feature compatibility
SSMS is installed separately starting with SQL Server 2016. Update a test to omit SSMS from feature support checks from 2016 and newer, rather than only 2016. See also MODULES-6585.
1 parent 92d238d commit bc92b54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/acceptance/z_last_sqlserver_features_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def ensure_sql_features(features, ensure_val = 'present')
8282
end
8383

8484
context 'can remove independent feature' do
85-
if sql_version == '2016'
85+
if sql_version.to_i >= 2016
8686
all_possible_features = ['BC', 'Conn', 'SDK', 'IS', 'MDS', 'DQC']
8787
features = ['BC', 'Conn', 'SDK', 'IS', 'MDS', 'DQC']
8888
else

0 commit comments

Comments
 (0)