Fixed matrix to_repr test

This commit is contained in:
Weird Constructor 2022-06-28 03:55:12 +02:00
parent c3ad309a54
commit 355a133d67

View file

@ -726,7 +726,7 @@ impl Matrix {
/// let mut serialized = matrix.to_repr().serialize().to_string();
///
/// assert!(serialized.find("\"sin\",2,0,0,[-1,-1,-1],[-1,\"sig\",-1]").is_some());
/// assert!(serialized.find("\"freq\",-0.100").is_some());
/// assert!(serialized.find("\"freq\",220.0").is_some());
///```
///
/// See also [MatrixRepr::serialize].