File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
experimenter/experimenter/nimbus_ui Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -605,10 +605,10 @@ class FeaturesPageSortChoices(models.TextChoices):
605605 class Deliveries (models .TextChoices ):
606606 NAME_UP = "slug" , "Recipe Name"
607607 NAME_DOWN = "-slug" , "Recipe Name"
608- DATES_UP = "_start_date" , "Dates "
609- DATES_DOWN = "-_start_date" , "Dates "
610- TYPE_UP = "is_rollout" , "Type"
611- TYPE_DOWN = "-is_rollout" , "Type"
608+ DATE_UP = "_start_date" , "Launch Date "
609+ DATE_DOWN = "-_start_date" , "Launch Date "
610+ TYPE_UP = "is_rollout" , "Delivery Type"
611+ TYPE_DOWN = "-is_rollout" , "Delivery Type"
612612 CHANNEL_UP = "merged_channel" , "Channel(s)"
613613 CHANNEL_DOWN = "-merged_channel" , "Channel(s)"
614614 VERSIONS_UP = "firefox_min_version" , "Min Version"
Original file line number Diff line number Diff line change @@ -3537,7 +3537,7 @@ def test_features_view_deliveries_table_can_sort_by_date(self):
35373537 response = self .client .get (
35383538 reverse ("nimbus-ui-features" ),
35393539 {
3540- "sort" : FeaturesPageSortChoices .Deliveries .DATES_UP ,
3540+ "sort" : FeaturesPageSortChoices .Deliveries .DATE_UP ,
35413541 "application" : NimbusExperiment .Application .DESKTOP .value ,
35423542 "feature_configs" : self .feature_configs ["feature-desktop" ].id ,
35433543 },
@@ -3551,7 +3551,7 @@ def test_features_view_deliveries_table_can_sort_by_date(self):
35513551 response = self .client .get (
35523552 reverse ("nimbus-ui-features" ),
35533553 {
3554- "sort" : FeaturesPageSortChoices .Deliveries .DATES_DOWN ,
3554+ "sort" : FeaturesPageSortChoices .Deliveries .DATE_DOWN ,
35553555 "application" : NimbusExperiment .Application .DESKTOP .value ,
35563556 "feature_configs" : self .feature_configs ["feature-desktop" ].id ,
35573557 },
You can’t perform that action at this time.
0 commit comments