Skip to content

Commit 1c11770

Browse files
committed
rename to assertEqual
1 parent 3ceeb22 commit 1c11770

26 files changed

+211
-211
lines changed

lib/es6/Pervasives.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function $at(l1, l2) {
117117
}
118118
}
119119

120-
function assert_eq(a, b) {
120+
function assertEqual(a, b) {
121121
if (!Primitive_object.notequal(a, b)) {
122122
return;
123123
}
@@ -167,6 +167,6 @@ export {
167167
int_of_string_opt,
168168
$at,
169169
panic,
170-
assert_eq,
170+
assertEqual,
171171
}
172172
/* No side effect */

lib/js/Pervasives.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function $at(l1, l2) {
117117
}
118118
}
119119

120-
function assert_eq(a, b) {
120+
function assertEqual(a, b) {
121121
if (!Primitive_object.notequal(a, b)) {
122122
return;
123123
}
@@ -166,5 +166,5 @@ exports.bool_of_string_opt = bool_of_string_opt;
166166
exports.int_of_string_opt = int_of_string_opt;
167167
exports.$at = $at;
168168
exports.panic = panic;
169-
exports.assert_eq = assert_eq;
169+
exports.assertEqual = assertEqual;
170170
/* No side effect */

0 commit comments

Comments
 (0)