Skip to content

Commit

Permalink
Fix test file
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 committed Aug 4, 2023
1 parent 9815d82 commit fbd18fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions exercises/concept/port-palermo/port_palermo_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ def test_get_identifier_for_kiel
end

def test_get_terminal_for_oil
assert_equal :A, Port.get_terminal("OIL123")
assert_equal :A, Port.get_terminal(:OIL123)
end

def test_get_terminal_for_gas
assert_equal :A, Port.get_terminal("GAS674")
assert_equal :A, Port.get_terminal(:GAS674)
end

def test_get_terminal_for_cars
assert_equal :B, Port.get_terminal("CAR942")
assert_equal :B, Port.get_terminal(:CAR942)
end

def test_get_terminal_for_clothes
assert_equal :B, Port.get_terminal("CLO315")
assert_equal :B, Port.get_terminal(:CLO315)
end
end

0 comments on commit fbd18fd

Please sign in to comment.