Skip to content

Commit f32d010

Browse files
1 parent d106a14 commit f32d010

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/DataFrame-Tests/DataFrameTest.class.st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)