Skip to content

Commit 43940a7

Browse files
committed
Fix tests
1 parent 3a012d3 commit 43940a7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tests/Cases/Compiler/CallMethodTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function testCallStaticMethodsWithNonArguments()
1313
$this->assertSame('Hello World!', $output[0]);
1414
}
1515

16-
public function testCallStaticMethodsWithWithArguments()
16+
public function TestCallStaticMethodsWithArguments()
1717
{
1818
[$output, $return] = $this->runJavaTest(__METHOD__);
1919
$this->assertSame('Hello World!', $output[0]);
@@ -28,7 +28,7 @@ public function testCallStaticMethodsWithNonArgumentsAndNamespace()
2828
$this->assertSame('Hello World!', $output[0]);
2929
}
3030

31-
public function testCallStaticMethodsWithWithArgumentsAndNamespace()
31+
public function TestCallStaticMethodsWithArgumentsAndNamespace()
3232
{
3333
[$output, $return] = $this->runJavaTest(
3434
__METHOD__,

tests/Cases/Compiler/Codes/TestCallStaticMethodsWithWithArguments.php renamed to tests/Cases/Compiler/Codes/TestCallStaticMethodsWithArguments.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
class TestCallStaticMethodsWithWithArguments
3+
class TestCallStaticMethodsWithArguments
44
{
55
/**
66
* @param \PHPJava\Packages\java\lang\_String $string

tests/Cases/Compiler/Codes/TestCallStaticMethodsWithWithArgumentsAndNamespace.php renamed to tests/Cases/Compiler/Codes/TestCallStaticMethodsWithArgumentsAndNamespace.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace PHPJava\CompilerMethodCallTest;
33

4-
class TestCallStaticMethodsWithWithArgumentsAndNamespace
4+
class TestCallStaticMethodsWithArgumentsAndNamespace
55
{
66
/**
77
* @param \PHPJava\Packages\java\lang\_String $string

0 commit comments

Comments
 (0)