Skip to content

Commit 76e09cc

Browse files
authored
Change node test util filenames to lower case to fix ninja.js dependency check (rescript-lang#6965)
1 parent bcbeeab commit 76e09cc

8 files changed

+12
-12
lines changed

jscomp/test/belt_float_ntest.res

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
open NodeTest
1+
open Node_test
22

33
module F = Belt.Float
44

5-
let eq = (loc, a, b) => Assert.equal(a, b, ~message=loc)
5+
let eq = (loc, a, b) => Node_assert.equal(a, b, ~message=loc)
66

77
describe("Belt.Float", () => {
88
test("fromInt", () => {

jscomp/test/belt_int_ntest.res

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
open NodeTest
1+
open Node_test
22

33
module I = Belt.Int
44

5-
let eq = (loc, a, b) => Assert.equal(a, b, ~message=loc)
5+
let eq = (loc, a, b) => Node_assert.equal(a, b, ~message=loc)
66

77
describe("Belt.Int", () => {
88
test("toFloat", () => {

jscomp/test/belt_mapint_ntest.res

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
@@config({flags: ["-bs-no-cross-module-opt"]})
22

3-
open NodeTest
3+
open Node_test
44

5-
let ok = (loc, a) => Assert.ok(a, ~message=loc)
5+
let ok = (loc, a) => Node_assert.ok(a, ~message=loc)
66

77
module M = Belt.Map.Int
88

jscomp/test/build.ninja

+6-6
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)