Skip to content

Commit b164662

Browse files
committed
Changed nil test to empty test
1 parent ca68518 commit b164662

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

features/testbot/nil.feature

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
@routing @testbot @nil
2-
Feature: Testbot - Check assigning nil values
3-
Scenario: Assign nil values to all way strings
2+
Feature: Testbot - Check assigning empty values
3+
Scenario: Assign empty values to all way strings
44
Given the profile file
55
"""
66
functions = require('testbot')
77
88
function way_function(profile, way, result)
9-
result.name = nil
10-
result.ref = nil
11-
result.destinations = nil
12-
result.exits = nil
13-
result.pronunciation = nil
14-
result.turn_lanes_forward = nil
15-
result.turn_lanes_backward = nil
9+
result.name = ""
10+
result.ref = ""
11+
result.destinations = ""
12+
result.exits = ""
13+
result.pronunciation = ""
14+
result.turn_lanes_forward = ""
15+
result.turn_lanes_backward = ""
1616
1717
result.forward_speed = 10
1818
result.backward_speed = 10

0 commit comments

Comments
 (0)