Skip to content

Commit

Permalink
these should not be async
Browse files Browse the repository at this point in the history
  • Loading branch information
katarinagud committed Oct 21, 2024
1 parent b33b685 commit fe74a02
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class and_datavalue_received_then_cancelled : given.a_reader
static IEnumerable<(NodeId node, TimeSpan readInterval)> nodes;
static List<NodeValue> handled_values;

Establish context = async () =>
Establish context = () =>
{
nodes = [(new NodeId(321), TimeSpan.FromSeconds(1))];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class and_exception_thrown_from_handlevalue : given.a_reader
static IEnumerable<(NodeId node, TimeSpan readInterval)> nodes;
static CancellationToken ct;

Establish context = async () =>
Establish context = () =>
{
nodes = [
(new NodeId(321), TimeSpan.FromSeconds(1)),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class and_exception_thrown_from_readvalueasync : given.a_reader
static IEnumerable<(NodeId node, TimeSpan readInterval)> nodes;
static CancellationToken ct;

Establish context = async () =>
Establish context = () =>
{
nodes = [
(new NodeId(321), TimeSpan.FromSeconds(1)),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class from_multiple_nodes_with_different_readinterval : given.a_reader
static IEnumerable<(NodeId node, TimeSpan readInterval)> nodes;
static List<NodeValue> handled_values;

Establish context = async () =>
Establish context = () =>
{
nodes = [
(new NodeId(321), TimeSpan.FromSeconds(1)),
Expand Down

0 comments on commit fe74a02

Please sign in to comment.