Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dittos committed Nov 17, 2018
1 parent 5308cf3 commit d535501
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -62,7 +62,7 @@ class WorkServiceTest {
Mockito.`when`(annMetadataCache.getMetadata(Mockito.anyString()))
.thenReturn(Parser.xmlParser().parseInput(Resources.toString(Resources.getResource("ann-metadata-sample.xml"), Charsets.UTF_8), "").selectFirst("anime"))
adminController.editWork(user, workId, AdminController.EditWorkRequest(
rawMetadata = "{\"periods\": [\"2018Q1\"]}",
rawMetadata = "{\"version\": 2, \"periods\": [\"2018Q1\"]}",
importAnnMetadata = "12345"
))
transactionTemplate.execute {
Expand Down
2 changes: 1 addition & 1 deletion fabfile.py
Expand Up @@ -4,7 +4,7 @@

def deploy_backend():
with lcd('backend'):
local('./gradlew dockerPush')
local('./gradlew build dockerPush')
docker()

def docker():
Expand Down

0 comments on commit d535501

Please sign in to comment.