Skip to content

Commit 4988fd0

Browse files
committed
Fixed the failing test of Pharo64
1 parent 8f2eea0 commit 4988fd0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

DataFrame-Tests.package/DataFrameTests.class/instance/testColumnTypes.st

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ testColumnTypes
33

44
| expected actual |
55

6-
expected := { ByteString . BoxedFloat64 . Boolean }.
6+
"Note: 0.1 class will be BoxFloat64 on Pharo32 and SmallFloat64 on Pharo64"
7+
expected := { ByteString . 0.1 class . Boolean }.
78
actual := df columnTypes.
89

910
self assert: actual equals: expected.

0 commit comments

Comments
 (0)