fixed name typo

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10335 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Jason Stewart 2008-04-03 11:27:18 +00:00
commit ccff189174

View file

@ -64,13 +64,13 @@ is($op->{i}, 6, "operator additive assignment");
$op3->{i} = 6;
$op2->{i} = 3;
$op = $op3 - $op2;
is($op->{i}, 3, "operator subtration");
is($op->{i}, 3, "operator subtraction");
# subtractive assignment operator
$op->{i} = 6;
$op2->{i} = 3;
$op -= $op2;
is($op->{i}, 3, "operator subtrative assignment");
is($op->{i}, 3, "operator subtractive assignment");
# multiplication operator
$op->{i} = 3;