Skip to content

Commit

Permalink
Fix missing ctor param
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth committed Sep 23, 2022
1 parent f88037f commit b54ac30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Driver/AndroidDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public AndroidDriver(IAutomationConfiguration configuration) : base(configuratio
var forwardResult = Adb.RunCommand("-s", $"\"{Device}\"", "reverse", $"tcp:{port}", $"tcp:{port}")?.GetAllOutput();
System.Diagnostics.Debug.WriteLine(forwardResult);

grpc = new GrpcHost();
grpc = new GrpcHost(configuration);
}

readonly GrpcHost grpc;
Expand Down

0 comments on commit b54ac30

Please sign in to comment.