Uh oh!
There was an error while loading. Please reload this page.
Using invariance culture when converting to string - #4635
Conversation
| public override void SetUsingValueText(string valueText) | ||
| { | ||
| RawValue = float.Parse(valueText, CultureInfo.InvariantCulture); | ||
| RawValue = float.Parse(valueText); |
There was a problem hiding this comment.
I would instead push the culture invariant value into the sweepable parameter:
Codecov Report
@@ Coverage Diff @@## master #4635 +/- ##
==========================================
+ Coverage 75.63% 76.02% +0.39%
==========================================
Files 938 951 +13 Lines 168669 173945 +5276 Branches 18217 18885 +668 ==========================================
+ Hits 127574 132247 +4673 - Misses 36065 36541 +476 - Partials 5030 5157 +127
|
justinormont
commented
Jan 21, 2020
Closing/reopening to restart CI tests. CI is failing w/ an odd Git checkout issue:
It sounds like it its trying to read from an non-existent commit hash. Perhaps restarting the CI will get the CI to read the current commit ID. |
sharwell
commented
Jan 21, 2020
Requesting a review from @tannergooding |
tannergooding
commented
Jan 21, 2020
This will break It is also likely to break users who expect or depend on the invariant culture working (a culture which uses I would recommend just updating the |
tannergooding
commented
Jan 21, 2020
Ah, nevermind. I see that the title no longer matches the change being provided. The actual change is updating |
justinormont
commented
Jan 21, 2020
For the required It's only failing under I'll rerun the failing CI leg and hopefully the randomness falls in our favor. The previous Git issue was deterministic and restarting the CI seems to cause it to pick up the right commit ID. |
related Issue: