Skip to content

Commit

Permalink
Change sample file names case
Browse files Browse the repository at this point in the history
  • Loading branch information
pashagolub committed Jun 17, 2020
1 parent a3fda35 commit 9a458f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/scheduler/scheduler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ func TestRun(t *testing.T) {

require.NotNil(t, pgengine.ConfigDb, "ConfigDB should be initialized")

ok := pgengine.ExecuteCustomScripts(context.Background(), "../../samples/interval.sql")
ok := pgengine.ExecuteCustomScripts(context.Background(), "../../samples/Interval.sql")
assert.True(t, ok, "Creating interval tasks failed")
ok = pgengine.ExecuteCustomScripts(context.Background(), "../../samples/basic.sql")
assert.True(t, ok, "Creating sql tasks failed")
ok = pgengine.ExecuteCustomScripts(context.Background(), "../../samples/noop.sql")
ok = pgengine.ExecuteCustomScripts(context.Background(), "../../samples/NoOp.sql")
assert.True(t, ok, "Creating built-in tasks failed")
ok = pgengine.ExecuteCustomScripts(context.Background(), "../../samples/shell.sql")
ok = pgengine.ExecuteCustomScripts(context.Background(), "../../samples/Shell.sql")
assert.True(t, ok, "Creating shell tasks failed")

t.Run("Check main loop of the application", func(t *testing.T) {
Expand Down

0 comments on commit 9a458f3

Please sign in to comment.