Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2173

Show
Ignore:
Timestamp:
05/07/07 14:52:40 (2 years ago)
Author:
kris
Message:

fixed unittest

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/text/Util.d

    r2071 r2173  
    11771177        assert (j == "onetwothree"); 
    11781178        j = join (foo, ", "); 
    1179         assert (j == "one, two, three, "); 
     1179        assert (j == "one, two, three"); 
    11801180        j = join (foo, " ", tmp); 
    1181         assert (j == "one two three "); 
     1181        assert (j == "one two three"); 
    11821182        assert (j.ptr is tmp.ptr); 
    11831183        }