Skip to content

Commit 5a97842

Browse files
committed
refactor(examples):autoformat discovery examples
1 parent a539d72 commit 5a97842

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Examples/ServiceExamples/Scripts/ExampleDiscovery.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ private IEnumerator Examples()
331331

332332
Log.Debug("TestDiscovery.RunTest()", "Discovery examples complete.");
333333
}
334-
334+
335335
#region Check State
336336
private IEnumerator CheckEnvironmentState(float waitTime)
337337
{
@@ -372,15 +372,15 @@ private void OnGetEnvironments(GetEnvironmentsResponse resp, Dictionary<string,
372372
{
373373
Log.Debug("ExampleDiscovery.OnGetEnvironments()", "Discovery - GetEnvironments Response: {0}", customData["json"].ToString());
374374

375-
foreach(var environment in resp.environments)
375+
foreach (var environment in resp.environments)
376376
{
377377
if (environment.read_only == false)
378378
{
379379
Log.Debug("ExampleDiscovery.OnGetEnvironments()", "setting environment to {0}", environment.environment_id);
380380
_environmentId = environment.environment_id;
381381
}
382382
}
383-
383+
384384
_getEnvironmentsTested = true;
385385
}
386386

0 commit comments

Comments
 (0)