Skip to content

Commit 9c3d53f

Browse files
authored
chore: remove unused PlaywrightSettingsXml.Retries (#3085)
1 parent df59854 commit 9c3d53f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Playwright.TestAdapter/PlaywrightSettingsXml.cs

-4
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,6 @@ public PlaywrightSettingsXml(XmlReader reader)
5858
reader.Read();
5959
ExpectTimeout = float.Parse(reader.Value, CultureInfo.InvariantCulture);
6060
break;
61-
case "Retries":
62-
reader.Read();
63-
Retries = int.Parse(reader.Value, CultureInfo.InvariantCulture);
64-
break;
6561
default:
6662
Console.WriteLine($"Playwright RunSettings Parsing Error: Playwright>{reader.Name} is not implemented");
6763
break;

0 commit comments

Comments
 (0)