Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
CuddlyBunion341 committed Oct 22, 2024
1 parent 1f28c17 commit 8dd6186
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/models/translation_test.rb
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 8dd6186

Please sign in to comment.