Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Jan 5, 2017
1 parent fc45b21 commit 6e2901a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/soap/IssueAddTest.php
Expand Up @@ -134,7 +134,7 @@ public function testCreateIssueWithRareFields() {
$t_issue_to_add['fixed_in_version'] = 'fixed version';
$t_issue_to_add['target_version'] = 'target version';
$t_issue_to_add['sticky'] = true;

$t_dt = new DateTime();
$t_issue_to_add['last_updated'] = $t_dt->format( DateTime::ISO8601 );

Expand All @@ -152,9 +152,9 @@ public function testCreateIssueWithRareFields() {
$this->assertEquals( $t_issue_to_add['fixed_in_version'], $t_issue->fixed_in_version );
$this->assertEquals( $t_issue_to_add['target_version'], $t_issue->target_version );
$this->assertEquals( $t_issue_to_add['sticky'], $t_issue->sticky );

$t_read_dt = DateTime::createFromFormat( DateTime::ISO8601, $t_issue->last_updated );

$this->assertEquals( $t_dt, $t_read_dt );
}

Expand Down

0 comments on commit 6e2901a

Please sign in to comment.