Skip to content

Commit

Permalink
taggs → tagg, workflow build badge
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusgohn committed Mar 22, 2024
1 parent 22c3e34 commit 7fc226f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Clarify Go SDK

[![GitHub Actions](https://github.com/clarify/clarify-go/workflows/Go/badge.svg?branch=master)](https://github.com/clarify/clarify-go/actions?query=workflow%3AGo+branch%main)
[![GitHub Actions](https://github.com/clarify/clarify-go/workflows/go.yml/badge.svg?branch=master)](https://github.com/clarify/clarify-go/actions?query=workflow%3AGo+branch%main)
[![Go Reference](https://pkg.go.dev/badge/github.com/clarify/clarify-go.svg)](https://pkg.go.dev/github.com/clarify/clarify-go)
[![Clarify Docs](https://img.shields.io/badge/%7CC%7C-docs-blue)][docs]

Expand Down
6 changes: 3 additions & 3 deletions test/evaluate_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@ func TestEvaluate(t *testing.T) {
fields.TimeAggregationPercent,
fields.TimeAggregationRate,
}
for _, taggs := range taggs {
t.Run("time aggregation test type "+fmt.Sprint(taggs), test(testCase{
for _, tagg := range taggs {
t.Run("time aggregation test type "+fmt.Sprint(tagg), test(testCase{
testArgs: a,
itemIDs: itemIDs,
query: createAnnotationQuery(a.prefix),
data: fields.Data().Where(fields.TimeRange(t0, t1)).RollupDuration(time.Hour, time.Monday),
timeAggregation: taggs,
timeAggregation: tagg,
groupAggregation: fields.GroupAggregationAvg,
expectedFields: ef,
}))
Expand Down

0 comments on commit 7fc226f

Please sign in to comment.