Skip to content

Commit 2d16562

Browse files
committed
rename test func
1 parent 968a48e commit 2d16562

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/integration_tests/solve/period_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// nolint:lll
12
package solve
23

34
import (
@@ -407,7 +408,7 @@ func Test_givenTimeEnabledWithoutTimeboundConstraints_andLateFromSpecified_shoul
407408
// Global XOR rule for item1 and item2,
408409
// item2 has many consequences in the first period.
409410
// The solver should choose the first period when item2 is selected.
410-
func Test_givenXORWithManyConsequencesInFirstPeriod_shouldChooseFirstPeriod(t *testing.T) {
411+
func Test_givenXORWithManyConsequencesInFirstPeriod_selectExpensiveItem_shouldChooseFirstPeriod(t *testing.T) {
411412
creator := puan.NewRulesetCreator()
412413
startTime := time.Now()
413414
endTime := startTime.Add(1 * time.Hour)
@@ -455,7 +456,7 @@ func Test_givenXORWithManyConsequencesInFirstPeriod_shouldChooseFirstPeriod(t *t
455456
// Global XOR rules for item1 and many other items,
456457
// all other items are preferred in the first period.
457458
// The solver should choose the first period when item1 is selected.
458-
func Test_givenXORWithManyPreferredInFirstPeriod_shouldChooseFirstPeriod(t *testing.T) {
459+
func Test_givenXORWithManyPreferredInFirstPeriod_selectNonPreferredItem_shouldChooseFirstPeriod(t *testing.T) {
459460
creator := puan.NewRulesetCreator()
460461
startTime := time.Now()
461462
endTime := startTime.Add(1 * time.Hour)

0 commit comments

Comments
 (0)