Browse Source

Typo

tags/v0.3.5
EricLBuehler 1 year ago
parent
commit
1c47b2b202
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      python_special_method_derive/tests/functional.rs

+ 2
- 2
python_special_method_derive/tests/functional.rs View File

@@ -32,7 +32,7 @@ fn test_with_str() {
name: 3.14159,
}
.__str__();
// TOOD: Is this a good __str__ output? How can we better show it or should they be different?
// TODO: Is this a good __str__ output? How can we better show it or should they be different?
assert_eq!(
"WithFields(dora: `299792458`, my: `Hello world`, name: `3.14159`)",
&res
@@ -47,7 +47,7 @@ fn test_with_repr() {
name: 3.14159,
}
.__repr__();
// TOOD: Is this a good __repr__ output? How can we better show it or should they be different?
// TODO: Is this a good __repr__ output? How can we better show it or should they be different?
assert_eq!(
"WithFields(dora: 299792458, my: \"Hello world\", name: 3.14159)",
&res


Loading…
Cancel
Save