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:
parent
7c15385e4e
commit
ccff189174
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue