Changeset 22549 for t

Show
Ignore:
Timestamp:
10/09/08 03:08:04 (6 weeks ago)
Author:
lwall
Message:

[assign.t] missing semicolons

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S03-operators/assign.t

    r22547 r22549  
    962962{ 
    963963    my @a = 1, 2; 
    964     is  (@a ,= 3, 4).join('|'), '1|2|3|4', ',= on lists works the same as push (return value)' 
    965     is  @a.join('|'), '1|2|3|4', ',= on lists works the same as push (effect on array)' 
    966  
    967 } 
     964    is  (@a ,= 3, 4).join('|'), '1|2|3|4', ',= on lists works the same as push (return value)'; 
     965    is  @a.join('|'), '1|2|3|4', ',= on lists works the same as push (effect on array)'; 
     966 
     967}