Skip to content

Commit

Permalink
style: FIx credo warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rai200890 committed Jan 22, 2020
1 parent 6585741 commit 2a2bf48
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/support/migrations/20200122133700_update_job_queue.exs
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
defmodule EctoJobScheduler.Test.Repo.Migrations.UpdateJobQueue do
use Ecto.Migration

alias EctoJob.Migrations.UpdateJobTable

@ecto_job_version 3
@table_name "test_jobs"

def up do
EctoJob.Migrations.UpdateJobTable.up(@ecto_job_version, @table_name)
UpdateJobTable.up(@ecto_job_version, @table_name)
end

def down do
EctoJob.Migrations.UpdateJobTable.down(@ecto_job_version, @table_name)
UpdateJobTable.down(@ecto_job_version, @table_name)
end
end

0 comments on commit 2a2bf48

Please sign in to comment.