From 7b29e6535d513a82270f17f925b874bc038925ba Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 27 Mar 2025 19:52:44 +0000 Subject: [PATCH] Move ErrorAttributesOptionsTests to correct package Closes gh-44920 --- .../web/{servlet => }/error/ErrorAttributesOptionsTests.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/{servlet => }/error/ErrorAttributesOptionsTests.java (92%) diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/servlet/error/ErrorAttributesOptionsTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/error/ErrorAttributesOptionsTests.java similarity index 92% rename from spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/servlet/error/ErrorAttributesOptionsTests.java rename to spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/error/ErrorAttributesOptionsTests.java index 7839699986..8c34a25a68 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/servlet/error/ErrorAttributesOptionsTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/error/ErrorAttributesOptionsTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2020 the original author or authors. + * Copyright 2012-2025 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. @@ -14,13 +14,12 @@ * limitations under the License. */ -package org.springframework.boot.web.servlet.error; +package org.springframework.boot.web.error; import java.util.EnumSet; import org.junit.jupiter.api.Test; -import org.springframework.boot.web.error.ErrorAttributeOptions; import org.springframework.boot.web.error.ErrorAttributeOptions.Include; import static org.assertj.core.api.Assertions.assertThat;