We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f2eea0 commit 4988fd0Copy full SHA for 4988fd0
DataFrame-Tests.package/DataFrameTests.class/instance/testColumnTypes.st
@@ -3,7 +3,8 @@ testColumnTypes
3
4
| expected actual |
5
6
- expected := { ByteString . BoxedFloat64 . Boolean }.
+ "Note: 0.1 class will be BoxFloat64 on Pharo32 and SmallFloat64 on Pharo64"
7
+ expected := { ByteString . 0.1 class . Boolean }.
8
actual := df columnTypes.
9
10
self assert: actual equals: expected.
0 commit comments