Skip to content

Commit 2c18f49

Browse files
glebtvclaude
andcommitted
Fix: Correct ERB syntax in database.yml
The ERB closing tag was in the wrong place, causing syntax errors. Moved %> before .sqlite3 instead of after. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f33a441 commit 2c18f49

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spec/internal/config/database.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test:
2020
<<: *default
2121
# Use unique database per job for parallel testing (act, CI)
2222
# GITHUB_JOB is set by GitHub Actions, ACT_TEST_ID for local act testing
23-
database: storage/test<%= ENV.fetch('GITHUB_JOB') { ENV.fetch('ACT_TEST_ID', '') %>.sqlite3 %>
23+
database: storage/test<%= ENV.fetch('GITHUB_JOB') { ENV.fetch('ACT_TEST_ID', '') } %>.sqlite3
2424

2525

2626
# SQLite3 write its data on the local filesystem, as such it requires

0 commit comments

Comments
 (0)