From 8dd61863142e220521dab43a79c38d3eddb5cb71 Mon Sep 17 00:00:00 2001 From: Daniel Bengl Date: Tue, 22 Oct 2024 12:20:18 +0200 Subject: [PATCH] Fix linter --- test/models/translation_test.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/models/translation_test.rb b/test/models/translation_test.rb index cfc8382..f73dba4 100644 --- a/test/models/translation_test.rb +++ b/test/models/translation_test.rb @@ -1,10 +1,10 @@ -require 'test_helper' +require "test_helper" module Moirai class TranslationTest < ActiveSupport::TestCase def setup - @valid_translation = Translation.new(key: 'hello', locale: 'en', file_path: '/valid/path/to/file') - @invalid_translation = Translation.new(key: 'hello', locale: 'en', file_path: '/invalid/path/to/file') + @valid_translation = Translation.new(key: "hello", locale: "en", file_path: "/valid/path/to/file") + @invalid_translation = Translation.new(key: "hello", locale: "en", file_path: "/invalid/path/to/file") end test "should be valid with valid attributes" do