diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/apps/bun-install-utf8.sh | 2 | ||||
-rw-r--r-- | test/apps/bun-run-check.sh | 4 | ||||
-rw-r--r-- | test/bun.js/ffi.test.fixture.callback.c | 2 | ||||
-rw-r--r-- | test/bun.js/ffi.test.fixture.receiver.c | 2 | ||||
-rw-r--r-- | test/bun.js/url.test.ts | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/test/apps/bun-install-utf8.sh b/test/apps/bun-install-utf8.sh index e7eaab93f..ca6858513 100644 --- a/test/apps/bun-install-utf8.sh +++ b/test/apps/bun-install-utf8.sh @@ -8,7 +8,7 @@ DIR=$(mktemp -d -t bun-ADD) cd "$DIR" -# https://github.com/Jarred-Sumner/bun/issues/115 +# https://github.com/oven-sh/bun/issues/115 echo '{ "author": "Arnaud Barré (https://github.com/ArnaudBarre)" }' >package.json $BUN_BIN add react diff --git a/test/apps/bun-run-check.sh b/test/apps/bun-run-check.sh index 096d80385..a904959e9 100644 --- a/test/apps/bun-run-check.sh +++ b/test/apps/bun-run-check.sh @@ -4,7 +4,7 @@ set -euo pipefail (killall -9 "$(basename "$BUN_BIN")" || echo "") >/dev/null 2>&1 -# https://github.com/Jarred-Sumner/bun/issues/40 +# https://github.com/oven-sh/bun/issues/40 # Define a function (details aren't important) fn() { :; } # The important bit: export the function @@ -22,7 +22,7 @@ if (($?)); then exit 1 fi -# https://github.com/Jarred-Sumner/bun/issues/53 +# https://github.com/oven-sh/bun/issues/53 rm -f "$DIR/bun-run-out.expected.txt" "$DIR/bun-run-out.txt" >/dev/null 2>&1 $BUN_BIN run --silent argv -- foo bar baz > "$DIR/bun-run-out.txt" diff --git a/test/bun.js/ffi.test.fixture.callback.c b/test/bun.js/ffi.test.fixture.callback.c index d48ef6753..1a43a098c 100644 --- a/test/bun.js/ffi.test.fixture.callback.c +++ b/test/bun.js/ffi.test.fixture.callback.c @@ -1,7 +1,7 @@ #define IS_CALLBACK 1 // This file is part of Bun! // You can find the original source: -// https://github.com/Jarred-Sumner/bun/blob/main/src/bun.js/api/FFI.h#L2 +// https://github.com/oven-sh/bun/blob/main/src/bun.js/api/FFI.h#L2 // // clang-format off // This file is only compatible with 64 bit CPUs diff --git a/test/bun.js/ffi.test.fixture.receiver.c b/test/bun.js/ffi.test.fixture.receiver.c index 5bb51bda5..a6f647253 100644 --- a/test/bun.js/ffi.test.fixture.receiver.c +++ b/test/bun.js/ffi.test.fixture.receiver.c @@ -2,7 +2,7 @@ #define USES_FLOAT 1 // This file is part of Bun! // You can find the original source: -// https://github.com/Jarred-Sumner/bun/blob/main/src/bun.js/api/FFI.h#L2 +// https://github.com/oven-sh/bun/blob/main/src/bun.js/api/FFI.h#L2 // // clang-format off // This file is only compatible with 64 bit CPUs diff --git a/test/bun.js/url.test.ts b/test/bun.js/url.test.ts index 37ea2008b..87291a09c 100644 --- a/test/bun.js/url.test.ts +++ b/test/bun.js/url.test.ts @@ -9,11 +9,11 @@ describe("url", () => { expect( Bun.inspect( new URL( - "https://github.com/Jarred-Sumner/bun/issues/135?hello%20i%20have%20spaces%20thank%20you%20good%20night" + "https://github.com/oven-sh/bun/issues/135?hello%20i%20have%20spaces%20thank%20you%20good%20night" ) ) ).toBe( - "https://github.com/Jarred-Sumner/bun/issues/135?hello%20i%20have%20spaces%20thank%20you%20good%20night" + "https://github.com/oven-sh/bun/issues/135?hello%20i%20have%20spaces%20thank%20you%20good%20night" ); }); it("works", () => { |