Skip to content

Commit

Permalink
chore: add vscode dirs to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
denopink committed Sep 16, 2024
1 parent 4d025fe commit 61cfe1a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,9 @@ deploy/docker-compose/

# misc
coverage.txt

# VSCode
*.code-workspace
.vscode/*
.dev/*

3 changes: 2 additions & 1 deletion store/dynamodb/instrumenting_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ package dynamodb

import (
"errors"
"fmt"
"testing"
"time"

Expand Down Expand Up @@ -250,7 +251,7 @@ func TestMeasuresUpdate(t *testing.T) {

testAssert.Expect(expectedRegistry)
assert.True(testAssert.GatherAndCompare(actualRegistry,
"testQueriesCounter", "testDynamoCounter"))
"testQueriesCounter", "testDynamoCounter"), fmt.Sprintf("%#v\n", tc))

//TODO: explore the values observed in a histogram for the QueryDurationSeconds
})
Expand Down

0 comments on commit 61cfe1a

Please sign in to comment.