Skip to content
This repository was archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
New downrule key in tests
Browse files Browse the repository at this point in the history
Replacing the "do" entry with "dw" in test_rulemngt.py in order to match
the syntax updated in 1e10a40.
  • Loading branch information
tkerdonc committed Jul 17, 2018
1 parent af6a67c commit 81e9fa0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions python/test/test_rulemngt.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ def test_addrule():
# fID, Pos, DI, TV, MO, CDA
["field1", 1, "bi", 6, "equal", "not-sent"],
["field2", 1, "up", 6, "equal", "not-sent"],
["field3", 1, "do", 6, "equal", "not-sent"],
["field4", 1, "do", 6, "equal", "not-sent"],
["field3", 1, "dw", 6, "equal", "not-sent"],
["field4", 1, "dw", 6, "equal", "not-sent"],
]
}
mgr.addRule(rule)
Expand All @@ -92,8 +92,8 @@ def test_addrule_doubleid():
# fID, Pos, DI, TV, MO, CDA
["field1", 1, "bi", 6, "equal", "not-sent"],
["field2", 1, "up", 6, "equal", "not-sent"],
["field3", 1, "do", 6, "equal", "not-sent"],
["field4", 1, "do", 6, "equal", "not-sent"],
["field3", 1, "dw", 6, "equal", "not-sent"],
["field4", 1, "dw", 6, "equal", "not-sent"],
]
}
mgr.addRule(rule)
Expand All @@ -112,8 +112,8 @@ def test_findrulefromid():
# fID, Pos, DI, TV, MO, CDA
["field1", 1, "bi", 6, "equal", "not-sent"],
["field2", 1, "up", 6, "equal", "not-sent"],
["field3", 1, "do", 6, "equal", "not-sent"],
["field4", 1, "do", 6, "equal", "not-sent"],
["field3", 1, "dw", 6, "equal", "not-sent"],
["field4", 1, "dw", 6, "equal", "not-sent"],
]
}
mgr.addRule(rule)
Expand Down

0 comments on commit 81e9fa0

Please sign in to comment.