Fix typedef_typedef test

This commit is contained in:
William S Fulton 2014-02-06 19:28:28 +00:00
commit 844695b674

View file

@ -1,5 +1,5 @@
import typedef_typedef
b = typedef_typedef.B()
if b.getValue(123) == 1234:
print "Failed !!!"
if b.getValue(123) != 1234:
raise Exception("Failed")