@@ -201,7 +201,7 @@ tape( 'the function returns an ndarray containing pseudorandom numbers (default;
201201 actual = random ( shape , PARAM1 , PARAM2 ) ;
202202
203203 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
204- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
204+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
205205 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
206206
207207 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -224,7 +224,7 @@ tape( 'the function returns an ndarray containing pseudorandom numbers (default;
224224 actual = random ( shape , param1 , param2 ) ;
225225
226226 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
227- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
227+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
228228 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
229229
230230 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -247,7 +247,7 @@ tape( 'the function returns an ndarray containing pseudorandom numbers (default;
247247 actual = random ( shape , param1 , param2 ) ;
248248
249249 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
250- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
250+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
251251 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
252252
253253 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -270,7 +270,7 @@ tape( 'the function returns an ndarray containing pseudorandom numbers (default;
270270 actual = random ( shape , param1 , param2 ) ;
271271
272272 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
273- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
273+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
274274 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
275275
276276 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -290,7 +290,7 @@ tape( 'the function supports specifying the output array data type (dtype=float6
290290 } ) ;
291291
292292 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
293- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
293+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
294294 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
295295
296296 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -315,7 +315,7 @@ tape( 'the function supports specifying the output array data type (dtype=float6
315315 } ) ;
316316
317317 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
318- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
318+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
319319 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
320320
321321 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -340,7 +340,7 @@ tape( 'the function supports specifying the output array data type (dtype=float6
340340 } ) ;
341341
342342 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
343- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
343+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
344344 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
345345
346346 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -365,7 +365,7 @@ tape( 'the function supports specifying the output array data type (dtype=float6
365365 } ) ;
366366
367367 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
368- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
368+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
369369 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
370370
371371 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -385,7 +385,7 @@ tape( 'the function supports specifying the output array data type (dtype=generi
385385 } ) ;
386386
387387 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
388- t . strictEqual ( getDType ( actual ) , 'generic' , 'returns expected value' ) ;
388+ t . strictEqual ( String ( getDType ( actual ) ) , 'generic' , 'returns expected value' ) ;
389389 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
390390
391391 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -410,7 +410,7 @@ tape( 'the function supports specifying the output array data type (dtype=generi
410410 } ) ;
411411
412412 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
413- t . strictEqual ( getDType ( actual ) , 'generic' , 'returns expected value' ) ;
413+ t . strictEqual ( String ( getDType ( actual ) ) , 'generic' , 'returns expected value' ) ;
414414 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
415415
416416 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -435,7 +435,7 @@ tape( 'the function supports specifying the output array data type (dtype=generi
435435 } ) ;
436436
437437 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
438- t . strictEqual ( getDType ( actual ) , 'generic' , 'returns expected value' ) ;
438+ t . strictEqual ( String ( getDType ( actual ) ) , 'generic' , 'returns expected value' ) ;
439439 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
440440
441441 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -460,7 +460,7 @@ tape( 'the function supports specifying the output array data type (dtype=generi
460460 } ) ;
461461
462462 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
463- t . strictEqual ( getDType ( actual ) , 'generic' , 'returns expected value' ) ;
463+ t . strictEqual ( String ( getDType ( actual ) ) , 'generic' , 'returns expected value' ) ;
464464 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
465465
466466 for ( i = 0 ; i < numel ( actual ) ; i ++ ) {
@@ -664,7 +664,7 @@ tape( 'if provided an empty shape, the function returns a zero-dimensional ndarr
664664 actual = random ( shape , PARAM1 , PARAM2 ) ;
665665
666666 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
667- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
667+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
668668 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
669669
670670 t . strictEqual ( typeof actual . get ( ) , 'number' , 'returns expected value' ) ;
@@ -683,7 +683,7 @@ tape( 'if provided an empty shape, the function returns a zero-dimensional ndarr
683683 actual = random ( shape , param1 , param2 ) ;
684684
685685 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
686- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
686+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
687687 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
688688
689689 t . strictEqual ( typeof actual . get ( ) , 'number' , 'returns expected value' ) ;
@@ -700,7 +700,7 @@ tape( 'if provided an empty shape, the function returns a zero-dimensional ndarr
700700 } ) ;
701701
702702 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
703- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
703+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
704704 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
705705
706706 t . strictEqual ( typeof actual . get ( ) , 'number' , 'returns expected value' ) ;
@@ -721,7 +721,7 @@ tape( 'if provided an empty shape, the function returns a zero-dimensional ndarr
721721 } ) ;
722722
723723 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
724- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
724+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
725725 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
726726
727727 t . strictEqual ( typeof actual . get ( ) , 'number' , 'returns expected value' ) ;
@@ -738,7 +738,7 @@ tape( 'if provided an empty shape, the function returns a zero-dimensional ndarr
738738 } ) ;
739739
740740 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
741- t . strictEqual ( getDType ( actual ) , 'generic' , 'returns expected value' ) ;
741+ t . strictEqual ( String ( getDType ( actual ) ) , 'generic' , 'returns expected value' ) ;
742742 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
743743
744744 t . strictEqual ( typeof actual . get ( ) , 'number' , 'returns expected value' ) ;
@@ -759,7 +759,7 @@ tape( 'if provided an empty shape, the function returns a zero-dimensional ndarr
759759 } ) ;
760760
761761 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
762- t . strictEqual ( getDType ( actual ) , 'generic' , 'returns expected value' ) ;
762+ t . strictEqual ( String ( getDType ( actual ) ) , 'generic' , 'returns expected value' ) ;
763763 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
764764
765765 t . strictEqual ( typeof actual . get ( ) , 'number' , 'returns expected value' ) ;
@@ -774,7 +774,7 @@ tape( 'if provided a shape having one or more dimensions of size zero, the funct
774774 actual = random ( shape , PARAM1 , PARAM2 ) ;
775775
776776 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
777- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
777+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
778778 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
779779
780780 t . strictEqual ( numel ( actual ) , 0 , 'returns expected value' ) ;
@@ -791,7 +791,7 @@ tape( 'if provided a shape having one or more dimensions of size zero, the funct
791791 } ) ;
792792
793793 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
794- t . strictEqual ( getDType ( actual ) , 'float64' , 'returns expected value' ) ;
794+ t . strictEqual ( String ( getDType ( actual ) ) , 'float64' , 'returns expected value' ) ;
795795 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
796796
797797 t . strictEqual ( numel ( actual ) , 0 , 'returns expected value' ) ;
@@ -808,7 +808,7 @@ tape( 'if provided a shape having one or more dimensions of size zero, the funct
808808 } ) ;
809809
810810 t . strictEqual ( isndarrayLike ( actual ) , true , 'returns expected value' ) ;
811- t . strictEqual ( getDType ( actual ) , 'generic' , 'returns expected value' ) ;
811+ t . strictEqual ( String ( getDType ( actual ) ) , 'generic' , 'returns expected value' ) ;
812812 t . deepEqual ( getShape ( actual ) , shape , 'returns expected value' ) ;
813813
814814 t . strictEqual ( numel ( actual ) , 0 , 'returns expected value' ) ;
0 commit comments