Skip to content

Commit 050aaf2

Browse files
committed
(maint) Use rspec3 'skip' instead of 'pending'
- As part of RSpec3, tests that are marked 'pending' are run and are expected to fail. However, the current test marked pending does not actually fail, so instead use 'skip' which preserves the original behavior.
1 parent f069a4a commit 050aaf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/acceptance/sqlserver_features_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def bind_and_apply_failing_manifest(host, features, ensure_val = 'present')
228228
end
229229

230230
it 'fails when ADV_SSMS is supplied but SSMS is not' do
231-
pending('This test is blocked by FM-2712')
231+
skip('This test is blocked by FM-2712')
232232
features = ['BC', 'Conn', 'ADV_SSMS', 'SDK']
233233
ensure_sql_features(host, features)
234234
end

0 commit comments

Comments
 (0)