Skip to content

Commit

Permalink
test: fix test-addon cp1252 text
Browse files Browse the repository at this point in the history
Previous text had a letter which is not a part of cp1252 and which
caused issues in GitHub Actions when being printed.
  • Loading branch information
StefanStojanovic committed May 11, 2023
1 parent fc51934 commit 83916a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/test-charmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def main():

textmap = {
"cp936": "\u4e2d\u6587",
"cp1252": "Lat\u012Bna",
"cp1252": "Lat\u00EEna",
"cp932": "\u306b\u307b\u3093\u3054",
}
if encoding in textmap:
Expand Down
2 changes: 1 addition & 1 deletion test/test-addon.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ test('build simple addon in path with non-ascii characters', function (t) {

var testDirNames = {
cp936: '文件夹',
cp1252: 'Latīna',
cp1252: 'Latîna',
cp932: 'フォルダ'
}
// Select non-ascii characters by current encoding
Expand Down

0 comments on commit 83916a1

Please sign in to comment.