From 8f0849f328ee5725af1c02d0aa02697a6ac93590 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 19 Feb 2014 12:47:55 +0100 Subject: [PATCH] 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. --- .../springframework/core/annotation/AnnotationUtilsTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-core/src/test/java/org/springframework/core/annotation/AnnotationUtilsTests.java b/spring-core/src/test/java/org/springframework/core/annotation/AnnotationUtilsTests.java index e54f50aec0..aa74fb54bf 100644 --- a/spring-core/src/test/java/org/springframework/core/annotation/AnnotationUtilsTests.java +++ b/spring-core/src/test/java/org/springframework/core/annotation/AnnotationUtilsTests.java @@ -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 {