Changeset 91 for trunk


Ignore:
Timestamp:
08/07/09 09:12:30 (3 years ago)
Author:
dom
Message:

Made tests pass on Mac by removing hard-coded 'localhost'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tester_test.erl

    r90 r91  
    1010run_all () -> 
    1111    Name = list_to_atom (fixtures: unique_string ()), 
    12     {ok, Node} = slave: start_link (localhost, Name), 
     12    {ok, Host} = inet: gethostname (), 
     13    Host_atom = list_to_atom (Host), 
     14    {ok, Node} = slave: start_link (Host_atom, Name), 
    1315    ok = run_all (Node), 
    1416    ok = slave: stop (Node). 
Note: See TracChangeset for help on using the changeset viewer.