Merge branch 'master' into 4951-request-vm
[arvados.git] / apps / workbench / test / integration / websockets_test.rb
index 45398f909640b0c2623a9a59c0723cba9341590a..1ae9010983aa9ba7a8f7e698b4a2328809e15900 100644 (file)
@@ -65,7 +65,8 @@ class WebsocketTest < ActionDispatch::IntegrationTest
       assert_text '1001 hello'
 
       # Check that new value of scrollTop is greater than the old one
-      assert page.evaluate_script("$('#event_log_div').scrollTop()") > old_top
+      new_top = page.evaluate_script("$('#event_log_div').scrollTop()")
+      assert_operator new_top, :>, old_top
 
       # Now scroll to 30 pixels from the top
       page.execute_script "$('#event_log_div').scrollTop(30)"