Skip to content

Commit

Permalink
Merge pull request #1472 from smartcontractkit/chores/remove-dimroc-p…
Browse files Browse the repository at this point in the history
…ublic

remove reference to dimroc-public
  • Loading branch information
dimroc authored Jul 22, 2019
2 parents 2b37dfc + da1ebc5 commit c85f7a1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion operator_ui/__tests__/utils/jobSpecDefinition.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const input = `{
"confirmations": 0,
"params": {
"ID": "KeepMeBecauseIAmUserDefined",
"get": "https://dimroc-public.s3.amazonaws.com/etl-language-comparison/tweets20140416.tar.gz"
"get": "https://localhost:9000/file.tar.gz"
}
}
],
Expand All @@ -35,5 +35,8 @@ describe('utils/jobSpecDefinition', () => {
expect(output.tasks[0].DeletedAt).toBeUndefined()
expect(output.tasks[0].UpdatedAt).toBeUndefined()
expect(output.tasks[0].params.ID).toEqual('KeepMeBecauseIAmUserDefined')
expect(output.tasks[0].params.get).toEqual(
'https://localhost:9000/file.tar.gz'
)
})
})

0 comments on commit c85f7a1

Please sign in to comment.