We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a4db7c commit cea46c8Copy full SHA for cea46c8
1 file changed
src/DataFrame-Tests/DataFrameTest.class.st
@@ -377,23 +377,6 @@ DataFrameTest >> testAsArrayOfRowsWithName [
377
equals: expected asOrderedCollection
378
]
379
380
-{ #category : #tests }
381
-DataFrameTest >> testAscendingSortBy [
382
-
383
- | actual expected |
384
385
- expected := DataFrame withRows: #(
386
- (Barcelona 1.609 true)
387
- (Dubai 2.789 true)
388
- (London 8.788 false)).
389
390
- expected rowNames: #(A B C).
391
- expected columnNames: #(City Population BeenThere).
392
393
- actual := df sortAscendingBy: #(Population).
394
- self assert: actual equals: expected
395
-]
396
397
{ #category : #tests }
398
DataFrameTest >> testAt [
399
0 commit comments