Skip to content

Commit

Permalink
Fix a test for unicode direction override failing because of Windows …
Browse files Browse the repository at this point in the history
…line endings
  • Loading branch information
cameel authored and chriseth committed Dec 16, 2020
1 parent e347545 commit 34e21c9
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
contract TimelockUpgrade {
function confirmUpgrade() external {
uint256 m;
uint256 d;
(/*year*/,/*month‮*/,d/*yad*/,m/*‬‬hour*/,/*minute*/,/*second*/) = BokkyDateTime.timestampToDateTime(block.timestamp);
}
}

contract TimelockUpgrade {
function confirmUpgrade() external {
uint256 m;
uint256 d;
(/*year*/,/*month‮*/,d/*yad*/,m/*‬‬hour*/,/*minute*/,/*second*/) = BokkyDateTime.timestampToDateTime(block.timestamp);
}
}

// ----
// ParserError 8936: (128-139): Mismatching directional override markers in comment or string literal.
// ParserError 8936: (124-135): Mismatching directional override markers in comment or string literal.

0 comments on commit 34e21c9

Please sign in to comment.