Repository: deltaspike Updated Branches: refs/heads/master 730c8a9b7 -> 5bdd172ad
DELTASPIKE-760 added test for application-scoped beans in test-control tests Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/5bdd172a Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/5bdd172a Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/5bdd172a Branch: refs/heads/master Commit: 5bdd172ad12e46b679b85d498bc528c7efc280f0 Parents: 730c8a9 Author: gpetracek <[email protected]> Authored: Sat Nov 1 16:32:20 2014 +0100 Committer: gpetracek <[email protected]> Committed: Sat Nov 1 16:32:20 2014 +0100 ---------------------------------------------------------------------- .../test/testcontrol/uc012/ApplicationScopedBeanTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltaspike/blob/5bdd172a/deltaspike/modules/test-control/impl/src/test/java/org/apache/deltaspike/test/testcontrol/uc012/ApplicationScopedBeanTest.java ---------------------------------------------------------------------- diff --git a/deltaspike/modules/test-control/impl/src/test/java/org/apache/deltaspike/test/testcontrol/uc012/ApplicationScopedBeanTest.java b/deltaspike/modules/test-control/impl/src/test/java/org/apache/deltaspike/test/testcontrol/uc012/ApplicationScopedBeanTest.java index d355136..38ada87 100644 --- a/deltaspike/modules/test-control/impl/src/test/java/org/apache/deltaspike/test/testcontrol/uc012/ApplicationScopedBeanTest.java +++ b/deltaspike/modules/test-control/impl/src/test/java/org/apache/deltaspike/test/testcontrol/uc012/ApplicationScopedBeanTest.java @@ -59,12 +59,12 @@ public class ApplicationScopedBeanTest if (value == 0) { - throw new IllegalStateException("new application-scoped bean was created"); + throw new IllegalStateException("new application-scoped bean instance was created"); } if (nextValue == 1) { - throw new IllegalStateException("new application-scoped bean was created"); + throw new IllegalStateException("new application-scoped bean instance was created"); } } }
