Skip to content

Commit

Permalink
integration test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tippmar-nr committed Sep 11, 2024
1 parent cce4ffe commit 7ac4712
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ public void Test()
{ "request.uri", "/Unknown"}
};

var transactionTraceExpectedAttributes = new Dictionary<string, string>()
var transactionTraceExpectedAttributes = new Dictionary<string, object>()
{
{ "faas.coldStart", "true"},
{ "faas.coldStart", true},
//new("faas.invocation_id", "test_invocation_id"), This one is a random guid, not something we can specifically look for
{ "faas.name", "HttpTriggerFunctionUsingAspNetCorePipeline" },
{ "faas.trigger", "http" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public void Test()
"cloud.resource_id"
};

var transactionTraceExpectedAttributes = new Dictionary<string, string>()
var transactionTraceExpectedAttributes = new Dictionary<string, object>()
{
{ "faas.coldStart", "true"},
{ "faas.coldStart", true},
//new("faas.invocation_id", "test_invocation_id"), This one is a random guid, not something we can specifically look for
{ "faas.name", "QueueTriggerFunction" },
{ "faas.trigger", "datasource" },
Expand Down

0 comments on commit 7ac4712

Please sign in to comment.