From 3a32a19c9a3e477de494ae4a45faf984de0008a0 Mon Sep 17 00:00:00 2001 From: Damien Mathieu Date: Wed, 15 Jan 2020 15:17:18 +0100 Subject: [PATCH] fix aggregator.go import package (#431) This import package doesn't match the tests file, preventing imports of the project from master with tests (without go modules). The package path matches the test file version, so this moves aggregator.go to match too. --- sdk/export/metric/aggregator/aggregator_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/export/metric/aggregator/aggregator_test.go b/sdk/export/metric/aggregator/aggregator_test.go index 19381302f..a040f1541 100644 --- a/sdk/export/metric/aggregator/aggregator_test.go +++ b/sdk/export/metric/aggregator/aggregator_test.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package aggregator_test // import "go.opentelemetry.io/otel/sdk/metric/aggregator" +package aggregator_test // import "go.opentelemetry.io/otel/sdk/export/metric/aggregator" import ( "errors"