-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Cleanup some XML tests #65290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup some XML tests #65290
Conversation
Tagging subscribers to this area: @dotnet/area-system-xml Issue DetailsFix #65235 ... hopefully. The XML tests are very old, and thus messy. Making significant changes is a non goal and I'm not certain what caused this failure. In separated commit order
|
{ | ||
MemoryStream ms = new MemoryStream(); | ||
TextWriter tw = new StreamWriter(ms); | ||
using var tw = new StreamWriter(ms, encoding:null, bufferSize:-1, leaveOpen:true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: should we put space after :
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually don't know what our prevailing style is. I will have to check. @sharwell is there any StyleCop or editorconfig linting of this available?
src/libraries/System.Private.Xml/tests/Writers/XmlWriterApi/TCFullEndElement.cs
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Positive changes, looks like removing some potential culprits, just a single nit around style (foo:bar
vs foo: bar
), thanks for the PR!
@dotnet/dncenghot can you please help with these?
|
@lpatalas I think was looking earlier but I'll take a look too to make sure it's not ongoing. I'd expect this to be a burst of trouble with the Service Bus endpoint we were talking to and not a persistent issue since work has continued to be enqueued this whole time. |
@danmoseley this was an outage from Service bus clustered between 2/13/2022 6:12:08.241 PM -> 2/13/2022, 8:47:12.666 PM PST. It self resolved and was external to us, so hopefully just a blip. |
Fix #65235 ... hopefully.
The XML tests are very old, and thus messy. Making significant changes is a non goal and I'm not certain what caused this failure.
In separated commit order