File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/types/complex128/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ tape( 'the constructor prototype has a read-only `byteLength` property', functio
105105 }
106106} ) ;
107107
108- tape ( 'the constructor returns an instance having a `real` property for getting the real component' , function test ( t ) {
108+ tape ( 'the constructor returns an instance having a property for getting the real component' , function test ( t ) {
109109 var z = new Complex128 ( 5.0 , 3.0 ) ;
110110 t . strictEqual ( z . re , 5.0 , 'returns expected value' ) ;
111111 t . end ( ) ;
@@ -121,7 +121,7 @@ tape( 'the constructor returns an instance which throws an error when attempting
121121 }
122122} ) ;
123123
124- tape ( 'the constructor returns an instance having an `imag` property for getting the imaginary component' , function test ( t ) {
124+ tape ( 'the constructor returns an instance having a property for getting the imaginary component' , function test ( t ) {
125125 var z = new Complex128 ( 5.0 , 3.0 ) ;
126126 t . strictEqual ( z . im , 3.0 , 'returns expected value' ) ;
127127 t . end ( ) ;
You can’t perform that action at this time.
0 commit comments