File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5022,7 +5022,7 @@ DataFrameTest >> testSelectEmptyDataFrame [
50225022]
50235023
50245024{ #category : #tests }
5025- DataFrameTest >> testSortAscendingBy [
5025+ DataFrameTest >> testSortBy [
50265026
50275027 | actual expected |
50285028
@@ -5034,7 +5034,7 @@ DataFrameTest >> testSortAscendingBy [
50345034 expected rowNames: #(A B C) .
50355035 expected columnNames: #(City Population BeenThere) .
50365036
5037- actual := df sortAscendingBy : #( Population) .
5037+ actual := df sortBy : #Population .
50385038 self assert: actual equals: expected
50395039]
50405040
@@ -5070,7 +5070,7 @@ DataFrameTest >> testSortDescendingBy [
50705070 expected rowNames: #(C B A) .
50715071 expected columnNames: #(City Population BeenThere) .
50725072
5073- actual := df sortDescendingBy: #( Population) .
5073+ actual := df sortDescendingBy: #Population .
50745074 self assert: actual equals: expected
50755075]
50765076
You can’t perform that action at this time.
0 commit comments