Improve naming

pull/13668/head
Mihai Galos 2022-03-08 17:35:28 +01:00
parent c6d88052be
commit 308401cb54
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
-## V 0.2.5
-*Not yet released, changelog is not full*
- Introduce `isize` and `usize` types, deprecate `size_t` in favor of `usize`.
- Add statemachine module.
- Add `statemachine` module.
-## V 0.2.4
-*Not yet released, changelog is not full*

View File

@ -14,7 +14,7 @@ fn default_setup() (MyReceiver, statemachine.StateMachine) {
return receiver, s
}
fn test_statemachine_works_when_single_transition() {
fn test_statemachine_number_of_callbacks_correct_when_single_transition() {
mut receiver, mut s := default_setup()
s.run(receiver)
@ -22,7 +22,7 @@ fn test_statemachine_works_when_single_transition() {
assert receiver.data.len == 3
}
fn test_statemachine_works_when_typical() {
fn test_statemachine_sequence_works_when_typical() {
mut receiver, mut s := default_setup()
s.run(receiver)