Development

Changeset 4575

You must first sign up to be able to contribute.

Changeset 4575

Show
Ignore:
Timestamp:
07/11/07 14:16:33 (1 year ago)
Author:
fabien
Message:

lime: fixed lime: minor logic error when counting total tests (patch from JanBlaha?)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/lime/trunk/lib/lime.php

    r4259 r4575  
    5151    if ($this->failed) 
    5252    { 
    53       $this->output->red_bar(sprintf(" Looks like you failed %d tests of %d.", $this->failed, $this->plan)); 
     53      $this->output->red_bar(sprintf(" Looks like you failed %d tests of %d.", $this->failed, $this->passed + $this->failed)); 
    5454    } 
    5555    else if ($total == $this->plan)