Skip to content

Commit

Permalink
Rename utilities.bash to utilities.sh (#956)
Browse files Browse the repository at this point in the history
* Rename utilities.bash to utilities.sh

Add appropiate header and shebang.

* Update all bats imports
  • Loading branch information
MrAlias authored Jul 18, 2024
1 parent 32e55ee commit dfd43b3
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion internal/test/e2e/databasesql/verify.bats
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bats

load ../../test_helpers/utilities
load ../../test_helpers/utilities.sh

SCOPE="go.opentelemetry.io/auto/database/sql"

Expand Down
2 changes: 1 addition & 1 deletion internal/test/e2e/gin/verify.bats
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bats

load ../../test_helpers/utilities
load ../../test_helpers/utilities.sh

SCOPE="go.opentelemetry.io/auto/net/http"

Expand Down
2 changes: 1 addition & 1 deletion internal/test/e2e/grpc/verify.bats
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bats

load ../../test_helpers/utilities
load ../../test_helpers/utilities.sh

SCOPE="go.opentelemetry.io/auto/google.golang.org/grpc"

Expand Down
2 changes: 1 addition & 1 deletion internal/test/e2e/kafka-go/verify.bats
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bats

load ../../test_helpers/utilities
load ../../test_helpers/utilities.sh

SCOPE="go.opentelemetry.io/auto/github.com/segmentio/kafka-go"

Expand Down
2 changes: 1 addition & 1 deletion internal/test/e2e/nethttp/verify.bats
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bats

load ../../test_helpers/utilities
load ../../test_helpers/utilities.sh

SCOPE="go.opentelemetry.io/auto/net/http"

Expand Down
2 changes: 1 addition & 1 deletion internal/test/e2e/nethttp_custom/verify.bats
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bats

load ../../test_helpers/utilities
load ../../test_helpers/utilities.sh

SCOPE="go.opentelemetry.io/auto/net/http"

Expand Down
2 changes: 1 addition & 1 deletion internal/test/e2e/otelglobal/verify.bats
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bats

load ../../test_helpers/utilities
load ../../test_helpers/utilities.sh

SCOPE="trace-example"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#!/usr/bin/env bash

# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0

# DATA RETRIEVERS

# Returns a list of span names emitted by a given library/scope
Expand Down

0 comments on commit dfd43b3

Please sign in to comment.