Skip to content

Commit b895f62

Browse files
committed
test:The tests should not rely on local file retrieval.
1 parent 76d524c commit b895f62

9 files changed

Lines changed: 9 additions & 9 deletions

t/01-ping.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my $script = 'resources/js/ce-bridge.mjs'.IO.absolute.Str;
1818
my $ce;
1919
my $startup-error = '';
2020
try {
21-
$ce = CortexJS::ComputeEngine.new(:$script);
21+
$ce = CortexJS::ComputeEngine.new();
2222
CATCH {
2323
default {
2424
$startup-error = .Str;

t/02-parse.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my $script = 'resources/js/ce-bridge.mjs'.IO.absolute.Str;
1818
my $ce;
1919
my $startup-error = '';
2020
try {
21-
$ce = CortexJS::ComputeEngine.new(:$script);
21+
$ce = CortexJS::ComputeEngine.new();
2222
CATCH {
2323
default {
2424
$startup-error = .Str;

t/03-simplify.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my $script = 'resources/js/ce-bridge.mjs'.IO.absolute.Str;
1818
my $ce;
1919
my $startup-error = '';
2020
try {
21-
$ce = CortexJS::ComputeEngine.new(:$script);
21+
$ce = CortexJS::ComputeEngine.new();
2222
CATCH {
2323
default {
2424
$startup-error = .Str;

t/04-evaluate.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my $script = 'resources/js/ce-bridge.mjs'.IO.absolute.Str;
1818
my $ce;
1919
my $startup-error = '';
2020
try {
21-
$ce = CortexJS::ComputeEngine.new(:$script);
21+
$ce = CortexJS::ComputeEngine.new();
2222
CATCH {
2323
default {
2424
$startup-error = .Str;

t/05-N.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my $script = 'resources/js/ce-bridge.mjs'.IO.absolute.Str;
1818
my $ce;
1919
my $startup-error = '';
2020
try {
21-
$ce = CortexJS::ComputeEngine.new(:$script);
21+
$ce = CortexJS::ComputeEngine.new();
2222
CATCH {
2323
default {
2424
$startup-error = .Str;

t/06-expand.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my $script = 'resources/js/ce-bridge.mjs'.IO.absolute.Str;
1818
my $ce;
1919
my $startup-error = '';
2020
try {
21-
$ce = CortexJS::ComputeEngine.new(:$script);
21+
$ce = CortexJS::ComputeEngine.new();
2222
CATCH {
2323
default {
2424
$startup-error = .Str;

t/07-expand-all.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my $script = 'resources/js/ce-bridge.mjs'.IO.absolute.Str;
1818
my $ce;
1919
my $startup-error = '';
2020
try {
21-
$ce = CortexJS::ComputeEngine.new(:$script);
21+
$ce = CortexJS::ComputeEngine.new();
2222
CATCH {
2323
default {
2424
$startup-error = .Str;

t/08-factor.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my $script = 'resources/js/ce-bridge.mjs'.IO.absolute.Str;
1818
my $ce;
1919
my $startup-error = '';
2020
try {
21-
$ce = CortexJS::ComputeEngine.new(:$script);
21+
$ce = CortexJS::ComputeEngine.new();
2222
CATCH {
2323
default {
2424
$startup-error = .Str;

t/09-solve.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my $script = 'resources/js/ce-bridge.mjs'.IO.absolute.Str;
1818
my $ce;
1919
my $startup-error = '';
2020
try {
21-
$ce = CortexJS::ComputeEngine.new(:$script);
21+
$ce = CortexJS::ComputeEngine.new();
2222
CATCH {
2323
default {
2424
$startup-error = .Str;

0 commit comments

Comments
 (0)