Skip to content

Commit 2074920

Browse files
committed
sd
1 parent 099c920 commit 2074920

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testsuite/test_byte_conversion.pro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,14 @@ for jj=32765L, 32770 do begin
112112
input_as_long=LONG(input)
113113
result_as_long=BYTE(input_as_long)
114114
if ARRAY_EQUAL(expected, result_as_long) NE 1 then begin
115-
ERRORS_ADD, nb_errors, 'input as Long for : '+STRING(input)+', result as long : '+STRING(result_as_long)
115+
ERRORS_ADD, nb_errors, 'input as Long for : '+STRING(input)+' converted input : '+STRING(input_as_long)+', result : '+STRING(result_as_long)
116116
endif
117117
;;
118118
;; this one does fail in GDL now
119119
input_as_float=FLOAT(input)
120120
result_as_float=BYTE(input_as_float)
121121
if ARRAY_EQUAL(expected, result_as_float) NE 1 then begin
122-
ERRORS_ADD, nb_errors, 'input as Long for : '+STRING(input)+', result as float : '+STRING(result_as_float)
122+
ERRORS_ADD, nb_errors, 'input as Float for : '+STRING(input)+' converted input : '+STRING(input_as_float)+', result : '+STRING(result_as_float)
123123
endif
124124
;;
125125
if KEYWORD_SET(debug) then begin

0 commit comments

Comments
 (0)