mirror of https://github.com/Nonannet/copapy.git
changes testcase to //
This commit is contained in:
parent
1380fc662b
commit
a7a8f11828
|
|
@ -49,7 +49,7 @@ def test_compile():
|
|||
c2 = CPVariable(2)
|
||||
|
||||
#ret = function(c1, c2)
|
||||
ret = [c1 / 4 + 3 * 3.6]
|
||||
ret = [c1 // 4]
|
||||
|
||||
out = [Write(r) for r in ret]
|
||||
|
||||
|
|
|
|||
|
|
@ -8,8 +8,7 @@ def test_compile() -> None:
|
|||
c1 = CPVariable(9)
|
||||
|
||||
#ret = [c1 / 4, c1 / -4, c1 // 4, c1 // -4, (c1 * -1) // 4]
|
||||
#ret = [c1 // 4]
|
||||
ret = [c1 / 4 + 3 * 3.6]
|
||||
ret = [c1 // 4]
|
||||
|
||||
out = [Write(r) for r in ret]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue