1'use strict';
2
3const common = require('../common');
4
5// _stream_wrap is deprecated.
6
7common.expectWarning('DeprecationWarning',
8                     'The _stream_wrap module is deprecated.', 'DEP0125');
9
10require('_stream_wrap');
11