Skip to content

Commit c59e872

Browse files
committed
Merge pull request bcit-ci#1364 from toopay/core-tests
Reduce decimal points, since there is a micro differencess on runtime an...
2 parents 8279420 + 09a1b5e commit c59e872

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CodeIgniter Unit Tests #
22

3-
Status : [![Build Status](https://secure.travis-ci.org/EllisLab/CodeIgniter.png?branch=feature/unit-tests)](http://travis-ci.org/EllisLab/CodeIgniter)
3+
Status : [![Build Status](https://secure.travis-ci.org/EllisLab/CodeIgniter.png?branch=develop)](http://travis-ci.org/EllisLab/CodeIgniter)
44

55
### Introduction:
66

tests/codeigniter/core/Benchmark_test.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public function test_elapsed_time()
2929
$this->benchmark->mark('code_start');
3030
sleep(1);
3131
$this->benchmark->mark('code_end');
32-
33-
$this->assertEquals('1.00', $this->benchmark->elapsed_time('code_start', 'code_end', 3));
32+
33+
$this->assertEquals('1.0', $this->benchmark->elapsed_time('code_start', 'code_end', 1));
3434
}
3535

3636
// --------------------------------------------------------------------

0 commit comments

Comments
 (0)