BAEL-4088: renamed module.

This commit is contained in:
Tyrell Flurry 2020-06-23 22:06:50 -04:00
parent 282e9be3f8
commit 1aec78c4b9
2 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,9 @@
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-multipart-file</artifactId>
<artifactId>spring-framework-web</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-multipart-file</name>
<name>spring-framework-web</name>
<parent>
<groupId>com.baeldung</groupId>

View File

@ -13,7 +13,7 @@ import org.junit.Test;
import org.springframework.mock.web.MockMultipartFile;
import org.springframework.web.multipart.MultipartFile;
public class ConvertMultipartFileExample {
public class ConvertMultipartFileUnitTest {
/**
* Example of converting a {@link MultipartFile} to a {@link File} using {@link MultipartFile#getBytes()}.