Skip to content

Commit

Permalink
chore: remove unused PlaywrightSettingsXml.Retries
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Dec 10, 2024
1 parent df59854 commit f570baf
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Playwright.TestAdapter/PlaywrightSettingsXml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,6 @@ public PlaywrightSettingsXml(XmlReader reader)
reader.Read();
ExpectTimeout = float.Parse(reader.Value, CultureInfo.InvariantCulture);
break;
case "Retries":
reader.Read();
Retries = int.Parse(reader.Value, CultureInfo.InvariantCulture);
break;
default:
Console.WriteLine($"Playwright RunSettings Parsing Error: Playwright>{reader.Name} is not implemented");
break;
Expand Down

0 comments on commit f570baf

Please sign in to comment.