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:
parent
461816735f
commit
8f0849f328
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue