We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37dd86a commit 2f9824dCopy full SHA for 2f9824d
1 file changed
src/DataFrame-Tests/DataFrameTest.class.st
@@ -462,7 +462,7 @@ DataFrameTest >> testAsDataFrameWithUnevenRowElements [
462
actual := #( #( 1 2 )
463
#( 3 4 5 )
464
#( 6 7 8 9 ) ) asDataFrame.
465
- expected := DataFrame withRows: #( #( 1 2 nil ) #( 3 4 5 ) #( 6 7 8 9 ) ).
+ expected := DataFrame withRows: #( #( 1 2 ) #( 3 4 5 ) #( 6 7 8 9 ) ).
466
467
self assert: actual equals: expected
468
]
0 commit comments