mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-12 16:44: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},
|
new: Interval{11, 14},
|
||||||
exp: Intervals{{5, 20}, {25, 30}},
|
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 {
|
for _, c := range cases {
|
||||||
|
|
Loading…
Reference in a new issue