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 6c9b2bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 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/actions/workflows/go.yml/badge.svg?branch=main)](https://github.com/clarify/clarify-go/actions/workflows/go.yml?query=workflow%3AGo+branch%3Amain)
[![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 Expand Up @@ -54,4 +54,4 @@ Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License
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 6c9b2bf

Please sign in to comment.