Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,5 +212,5 @@ jobs:
- name: Destroy arm64 AOT Stack
run: |
cd libraries/tests/e2e/infra-aot
npox cdk destroy --all -c architecture=${{ matrix.arch }} --force
npx cdk destroy --all -c architecture=${{ matrix.arch }} --force

Original file line number Diff line number Diff line change
Expand Up @@ -271,14 +271,10 @@ private void AssertSingleMetric(string output)

Assert.True(cloudWatchMetricsElement[0].TryGetProperty("Dimensions", out JsonElement dimensionsElement));
Assert.Equal("FunctionName", dimensionsElement[0][0].GetString());
Assert.Equal("Service", dimensionsElement[0][1].GetString());

Assert.True(root.TryGetProperty("FunctionName", out JsonElement functionNameElement));
Assert.Equal(_functionName, functionNameElement.GetString());

Assert.True(root.TryGetProperty("Service", out JsonElement serviceElement));
Assert.Equal("Test", serviceElement.GetString());

Assert.True(root.TryGetProperty("SingleMetric", out JsonElement singleMetricElement));
Assert.Equal(1, singleMetricElement.GetInt32());
}
Expand Down
Loading