mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-13 00:54:04 -08:00
Merge pull request #1975 from prometheus/storage-test
storage: fix struct alignment issue in test
This commit is contained in:
commit
815cb57af3
|
@ -152,8 +152,8 @@ func TestSampleDeliveryOrder(t *testing.T) {
|
||||||
// the `numCalls` property will contain a count of how many times Store() was
|
// the `numCalls` property will contain a count of how many times Store() was
|
||||||
// called.
|
// called.
|
||||||
type TestBlockingStorageClient struct {
|
type TestBlockingStorageClient struct {
|
||||||
block chan bool
|
|
||||||
numCalls uint64
|
numCalls uint64
|
||||||
|
block chan bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewTestBlockedStorageClient() *TestBlockingStorageClient {
|
func NewTestBlockedStorageClient() *TestBlockingStorageClient {
|
||||||
|
|
Loading…
Reference in a new issue