11'use strict' ;
22
33import assert from 'yeoman-test' ;
4+ import asserts from 'assert' ;
45import { glob } from 'glob' ;
56import helpers , { result } from 'yeoman-test' ;
67import os from 'os' ;
@@ -165,7 +166,7 @@ describe('aspnet-oauth:app', () => {
165166 if ( clone . status !== 0 && clone . output ) {
166167 console . error ( clone . output . toString ( 'utf8' ) ) ;
167168 }
168- assert . strictEqual ( clone . status , 0 ) ;
169+ asserts . equal ( clone . status , 0 ) ;
169170
170171 // Run the generator to create the project
171172 context = await helpers
@@ -190,7 +191,7 @@ describe('aspnet-oauth:app', () => {
190191 if ( dotnetSlnAdd . status !== 0 ) {
191192 console . error ( dotnetSlnAdd . output . toString ( 'utf8' ) ) ;
192193 }
193- assert . strictEqual ( dotnetSlnAdd . status , 0 ) ;
194+ asserts . equal ( dotnetSlnAdd . status , 0 ) ;
194195
195196 // Build the solution, run the tests and generate the NuGet packages
196197 let build ;
@@ -209,7 +210,7 @@ describe('aspnet-oauth:app', () => {
209210 if ( build . status !== 0 && build . output ) {
210211 console . error ( build . output . toString ( 'utf8' ) ) ;
211212 }
212- assert . strictEqual ( build . status , 0 ) ;
213+ asserts . equal ( build . status , 0 ) ;
213214 } ) ;
214215
215216 it ( 'compiles the provider' , async ( ) => {
0 commit comments