Skip to content
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

Enhance Spectrum Analyzer #365

Merged
merged 17 commits into from
Nov 26, 2017
Prev Previous commit
Next Next commit
fix unittest
  • Loading branch information
jopohl committed Nov 22, 2017
commit 70306c12944e3d649f26e47441c7e33d8be5a6ed
2 changes: 1 addition & 1 deletion tests/test_send_recv_dialog_gui.py
Original file line number Diff line number Diff line change
@@ -262,7 +262,7 @@ def test_send_dialog_scene_zoom(self):
send_dialog.graphics_view.zoom(0.8)
QApplication.instance().processEvents()
QTest.qWait(50)
self.assertLessEqual(send_dialog.graphics_view.view_rect().width(), view_width)
self.assertLessEqual(int(send_dialog.graphics_view.view_rect().width()), int(view_width))

self.__close_dialog(send_dialog)