Skip to content

Commit 733f3b7

Browse files
ilmanzoMrAlias
andauthored
Update build to use Go 1.15 (#236)
Co-authored-by: Tyler Yahn <[email protected]>
1 parent aaac45e commit 733f3b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.1
22
jobs:
33
build:
44
docker:
5-
- image: circleci/golang:1.13
5+
- image: circleci/golang:1.15
66

77
environment:
88
TEST_RESULTS: /tmp/test-results # path to where test results will be saved

exporters/metric/cortex/cortex_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ var mockTime int64 = time.Time{}.Unix()
7070

7171
func TestExportKindFor(t *testing.T) {
7272
exporter := Exporter{}
73-
got := exporter.ExportKindFor(nil, aggregation.Kind(0))
73+
got := exporter.ExportKindFor(nil, aggregation.Kind(rune(0)))
7474
want := metric.CumulativeExporter
7575

7676
if got != want {

0 commit comments

Comments
 (0)