forgot to skip tests

This commit is contained in:
Anthony Scopatz 2015-09-26 22:55:35 -04:00
parent 34b39f3dc1
commit a86b5c3a2e

View file

@ -132,6 +132,7 @@ def test_binop_minus():
def test_binop_times():
yield check_ast, '42 * 65'
@skip_if(VER_MAJOR_MINOR < VER_3_5)
def test_binop_matmult():
yield check_ast, 'x @ y', False
@ -855,6 +856,7 @@ def test_sub_eq():
def test_times_eq():
yield check_stmts, 'x = 42; x *= 2'
@skip_if(VER_MAJOR_MINOR < VER_3_5)
def test_matmult_eq():
yield check_stmts, 'x @= y', False