Browse Source

really really fix the test.

pull/10532/head
Dan Walmsley 4 years ago
parent
commit
c634f11def
  1. 4
      tests/Avalonia.IntegrationTests.Appium/WindowTests.cs

4
tests/Avalonia.IntegrationTests.Appium/WindowTests.cs

@ -156,10 +156,10 @@ namespace Avalonia.IntegrationTests.Appium
var measuredWithString = measuredWithTextBlock.Text;
var workingAreaString = screenRectTextBox.Text;
var workingArea = Rect.Parse(workingAreaString);
var workingArea = Size.Parse(workingAreaString);
var measuredWith = Size.Parse(measuredWithString);
Assert.Equal(workingArea.Size, measuredWith);
Assert.Equal(workingArea, measuredWith);
}
}

Loading…
Cancel
Save