mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Merge pull request #6559 from yeya24/tomb-test
Add a tomb interval test case
This commit is contained in:
commit
bc42cf6806
|
@ -118,6 +118,11 @@ func TestAddingNewIntervals(t *testing.T) {
|
|||
new: Interval{11, 14},
|
||||
exp: Intervals{{5, 20}, {25, 30}},
|
||||
},
|
||||
{
|
||||
exist: Intervals{{5, 10}, {12, 20}, {25, 30}},
|
||||
new: Interval{1, 3},
|
||||
exp: Intervals{{1, 3}, {5, 10}, {12, 20}, {25, 30}},
|
||||
},
|
||||
}
|
||||
|
||||
for _, c := range cases {
|
||||
|
|
Loading…
Reference in a new issue