Skip to content

Commit

Permalink
Merge pull request #10628 from ethereum/fix-line-endings-in-unicode-d…
Browse files Browse the repository at this point in the history
…irection-override-test

Fix line endings in Unicode diretion override tests
  • Loading branch information
chriseth committed Dec 16, 2020
2 parents e347545 + 34e21c9 commit 33cc26f
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 33cc26f

Please sign in to comment.