Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
urdarinda committed Dec 17, 2024
1 parent b04e7ba commit f7d3f48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions extra/redisotel/metrics_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func TestMetrics(t *testing.T) {
{
Attributes: attribute.NewSet(
semconv.DBSystemRedis,
attribute.String("status", "error"),
attribute.String("status", "ok"),
),
},
},
Expand All @@ -75,7 +75,7 @@ func TestMetrics(t *testing.T) {
Attributes: attribute.NewSet(
semconv.DBSystemRedis,
attribute.String("type", "command"),
attribute.String("status", "error"),
attribute.String("status", "ok"),
),
},
},
Expand Down Expand Up @@ -114,7 +114,7 @@ func TestCustomAttributes(t *testing.T) {
{
Attributes: attribute.NewSet(
semconv.DBSystemRedis,
attribute.String("status", "error"),
attribute.String("status", "ok"),
),
},
},
Expand All @@ -131,7 +131,7 @@ func TestCustomAttributes(t *testing.T) {
Attributes: attribute.NewSet(
semconv.DBSystemRedis,
attribute.String("type", "command"),
attribute.String("status", "error"),
attribute.String("status", "ok"),
attribute.String("custom", "value"),
),
},
Expand Down

0 comments on commit f7d3f48

Please sign in to comment.