@@ -53,7 +53,7 @@ public void ShouldTransformJsx()
5353 _environment . Verify ( x => x . ExecuteWithLargerStackIfRequired < string > (
5454 "ReactNET_transform" ,
5555 "<div>Hello World</div>" ,
56- false
56+ It . IsAny < bool > ( )
5757 ) ) ;
5858 }
5959
@@ -63,7 +63,7 @@ public void ShouldWrapExceptionsInJsxExeption()
6363 _environment . Setup ( x => x . ExecuteWithLargerStackIfRequired < string > (
6464 "ReactNET_transform" ,
6565 "<div>Hello World</div>" ,
66- false
66+ It . IsAny < bool > ( )
6767 ) ) . Throws ( new Exception ( "Something broke..." ) ) ;
6868
6969 const string input = "<div>Hello World</div>" ;
@@ -116,7 +116,7 @@ public void ShouldTransformJsxIfFileCacheHashInvalid()
116116 _environment . Setup ( x => x . ExecuteWithLargerStackIfRequired < JavaScriptWithSourceMap > (
117117 "ReactNET_transform_sourcemap" ,
118118 It . IsAny < string > ( ) ,
119- false
119+ It . IsAny < bool > ( )
120120 ) ) . Returns ( new JavaScriptWithSourceMap { Code = "React.DOM.div('Hello World')" } ) ;
121121
122122 var result = _jsxTransformer . TransformJsxFile ( "foo.jsx" ) ;
@@ -132,7 +132,7 @@ public void ShouldTransformJsxIfNoCache()
132132 _environment . Setup ( x => x . ExecuteWithLargerStackIfRequired < JavaScriptWithSourceMap > (
133133 "ReactNET_transform_sourcemap" ,
134134 It . IsAny < string > ( ) ,
135- false
135+ It . IsAny < bool > ( )
136136 ) ) . Returns ( new JavaScriptWithSourceMap { Code = "React.DOM.div('Hello World')" } ) ;
137137
138138 var result = _jsxTransformer . TransformJsxFile ( "foo.jsx" ) ;
@@ -146,7 +146,7 @@ public void ShouldSaveTransformationResult()
146146 _environment . Setup ( x => x . ExecuteWithLargerStackIfRequired < JavaScriptWithSourceMap > (
147147 "ReactNET_transform_sourcemap" ,
148148 It . IsAny < string > ( ) ,
149- false
149+ It . IsAny < bool > ( )
150150 ) ) . Returns ( new JavaScriptWithSourceMap { Code = "React.DOM.div('Hello World')" } ) ;
151151
152152 string result = null ;
0 commit comments