Skip to content

Commit

Permalink
Fix test move window
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Sirokov committed Jan 24, 2020
1 parent 3ae8e5a commit 756e162
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_move_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@


def test_xy():
window = webview.create_window('xy test', x=200, y=200)
window = webview.create_window('xy test', x=200, y=200, width=100, height=100)
run_test(webview, window, xy)


def test_move_window():
window = webview.create_window('Move window test', x=100, y=100)
window = webview.create_window('Move window test', x=200, y=200, , width=100, height=100)
run_test(webview, window, move_window)


Expand Down

0 comments on commit 756e162

Please sign in to comment.