Skip to content

Commit

Permalink
Fixed import statements in unit tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikhofer committed May 3, 2017
1 parent ac80529 commit 57d289b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ publish {
groupId = 'com.xinra.nucleus'
artifactId = 'nucleus-service'
publishVersion = '0.1.0'
licences = ['MIT']
licences = ['BSD 3-Clause']
desc = 'Nucleus service layer'
website = 'https://github.com/xinra-nucleus/nucleus-service'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.xinra.nucleus.service.DtoFactory;
import com.xinra.nucleus.service.DynamicProxyDtoFactory;
import com.xinra.nucleus.service.ImplDtoFactory;
import com.xinra.nucleus.service.test.TestDto;
import com.xinra.nucleus.service.TestDto;
import java.util.Arrays;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.xinra.nucleus.service

import com.xinra.nucleus.service.DtoImpl
import com.xinra.nucleus.service.test.TestDto
import com.xinra.nucleus.service.TestDto
import groovy.transform.CompileStatic

@CompileStatic
Expand Down

0 comments on commit 57d289b

Please sign in to comment.