Fix minor error in AnnotationUtilsTests

TransactionalAndOrderedClass now extends TransactionalClass.

The tests passed anyway, but they did not actually verify what was meant
to be verified.
This commit is contained in:
Sam Brannen 2014-02-19 12:47:55 +01:00
parent 461816735f
commit 8f0849f328
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2013 the original author or authors.
* Copyright 2002-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -445,7 +445,7 @@ public class AnnotationUtilsTests {
}
@Order
public static class TransactionalAndOrderedClass {
public static class TransactionalAndOrderedClass extends TransactionalClass {
}
public static class SubTransactionalAndOrderedClass extends TransactionalAndOrderedClass {