diff options
author | Björn Gustavsson <[email protected]> | 2012-10-23 11:20:33 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-10-23 11:24:47 +0200 |
commit | d18ab0179e83f378026cea87dea026cae1077bec (patch) | |
tree | a52fad0de72c4c3ac5ffeeb1ff857b3c6cabfeee | |
parent | c4375a62cfaabfd8de757f59714623ba1a8cb915 (diff) | |
download | otp-d18ab0179e83f378026cea87dea026cae1077bec.tar.gz otp-d18ab0179e83f378026cea87dea026cae1077bec.tar.bz2 otp-d18ab0179e83f378026cea87dea026cae1077bec.zip |
Correct typo in test suite name
It should be beam_except_SUITE, since it tests the beam_except
module (introduced in 726f6e4c7afe8ce37b30eedbebe583e7b9bfc51b).
-rw-r--r-- | lib/compiler/test/Makefile | 4 | ||||
-rw-r--r-- | lib/compiler/test/beam_except_SUITE.erl (renamed from lib/compiler/test/beam_expect_SUITE.erl) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/compiler/test/Makefile b/lib/compiler/test/Makefile index e047166ade..3b065ec3b9 100644 --- a/lib/compiler/test/Makefile +++ b/lib/compiler/test/Makefile @@ -10,7 +10,7 @@ MODULES= \ apply_SUITE \ beam_validator_SUITE \ beam_disasm_SUITE \ - beam_expect_SUITE \ + beam_except_SUITE \ bs_bincomp_SUITE \ bs_bit_binaries_SUITE \ bs_construct_SUITE \ @@ -39,7 +39,7 @@ MODULES= \ NO_OPT= \ andor \ apply \ - beam_expect \ + beam_except \ bs_construct \ bs_match \ bs_utf \ diff --git a/lib/compiler/test/beam_expect_SUITE.erl b/lib/compiler/test/beam_except_SUITE.erl index 6f216eac4f..6b55224a42 100644 --- a/lib/compiler/test/beam_expect_SUITE.erl +++ b/lib/compiler/test/beam_except_SUITE.erl @@ -16,7 +16,7 @@ %% %% %CopyrightEnd% %% --module(beam_expect_SUITE). +-module(beam_except_SUITE). -export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, init_per_group/2,end_per_group/2, |