From 2a2bf48abc5d13bdfa2cc8d651a7d30d31011987 Mon Sep 17 00:00:00 2001 From: Raissa Ferreira Date: Wed, 22 Jan 2020 17:18:58 -0300 Subject: [PATCH] style: FIx credo warnings --- test/support/migrations/20200122133700_update_job_queue.exs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/support/migrations/20200122133700_update_job_queue.exs b/test/support/migrations/20200122133700_update_job_queue.exs index 7512a05..deb71ae 100644 --- a/test/support/migrations/20200122133700_update_job_queue.exs +++ b/test/support/migrations/20200122133700_update_job_queue.exs @@ -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