Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4d1a28b2
Commit
4d1a28b2
authored
Jun 26, 2011
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Jun 27, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript/tests: Fix copy & paste typos.
parent
738120ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lang.js
dlls/jscript/tests/lang.js
+2
-2
No files found.
dlls/jscript/tests/lang.js
View file @
4d1a28b2
...
...
@@ -251,7 +251,7 @@ ok((0 === 2 ? 1 : 2) === 2, "conditional expression true is not 2");
ok
(
getVT
(
undefined
)
===
"VT_EMPTY"
,
"getVT(undefined) is not VT_EMPTY"
);
ok
(
getVT
(
null
)
===
"VT_NULL"
,
"getVT(null) is not VT_NULL"
);
ok
(
getVT
(
0
)
===
"VT_I4"
,
"getVT(0) is not VT_I4"
);
ok
(
getVT
(
0.5
)
===
"VT_R8"
,
"getVT(
1
.5) is not VT_R8"
);
ok
(
getVT
(
0.5
)
===
"VT_R8"
,
"getVT(
0
.5) is not VT_R8"
);
ok
(
getVT
(
"test"
)
===
"VT_BSTR"
,
"getVT(
\"
test
\"
) is not VT_BSTR"
);
ok
(
getVT
(
Math
)
===
"VT_DISPATCH"
,
"getVT(Math) is not VT_DISPATCH"
);
ok
(
getVT
(
false
)
===
"VT_BOOL"
,
"getVT(false) is not VT_BOOL"
);
...
...
@@ -274,7 +274,7 @@ ok(getVT(tmp) === "VT_I4", "getVT(4-2) !== VT_I4");
tmp
=
4.5
-
2
;
ok
(
tmp
===
2.5
,
"4.5-2 !== 2.5"
);
ok
(
getVT
(
tmp
)
===
"VT_R8"
,
"getVT(4-2) !== VT_R8"
);
ok
(
getVT
(
tmp
)
===
"VT_R8"
,
"getVT(4
.5
-2) !== VT_R8"
);
tmp
=
-
2
;
ok
(
tmp
===
0
-
2
,
"-2 !== 0-2"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment