Skip to content

Commit

Permalink
tests: Rename some files because windows is dumb and they're too long…
Browse files Browse the repository at this point in the history
… I guess
  • Loading branch information
Dinnerbone committed Aug 12, 2023
1 parent 0591fd8 commit d9847d0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import flash.display.MovieClip;
public class Test extends MovieClip {}
}

import UserDefinedErrorsPackageWithoutMatchingCatch.*;
import testpackage.*;

// var SECTION = "Definitions"; // provide a document reference (ie, ECMA section)
// var VERSION = "AS3"; // Version of JavaScript or ECMA
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch{
package testpackage {

import UserDefinedErrorsPackageWithoutMatchingCatch2.*;
import testpackage2.*;
import com.adobe.test.Assert;
public class TryAndCatchBlockWithUserDefinedErrorsWithoutMatchingcatch
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch2
package testpackage2
{
public class Box
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch2 {
package testpackage2 {

public class BoxDimensionException extends Error {
public function BoxDimensionException(boxErrMsg: String) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch2 {
package testpackage2 {

public class BoxOverflowException extends BoxDimensionException {
public function BoxOverflowException(boxErrMsg3: String) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch2 {
package testpackage2 {

public class BoxUnderzeroException extends BoxDimensionException {

Expand Down

0 comments on commit d9847d0

Please sign in to comment.