Remove test_ prefix from test functions.

This commit is contained in:
Isis Lovecruft 2017-03-14 23:19:38 +00:00
parent 4eaa1321ee
commit b5531c1257
Failed to extract signature

View file

@ -390,7 +390,7 @@ mod test {
use super::*;
#[test]
fn test_unmarshal_marshal() { // TestUnmarshalMarshal
fn unmarshal_marshal() { // TestUnmarshalMarshal
let mut cspring: OsRng;
let mut keypair: Keypair;
let mut x: Option<ExtendedPoint>;
@ -415,7 +415,7 @@ mod test {
}
#[test]
fn test_sign_verify() { // TestSignVerify
fn sign_verify() { // TestSignVerify
let mut cspring: OsRng;
let keypair: Keypair;
let good_sig: Signature;
@ -443,7 +443,7 @@ mod test {
#[cfg(test)]
#[cfg(not(release))]
#[test]
fn test_golden() { // TestGolden
fn golden() { // TestGolden
let mut line: String;
let mut lineno: usize = 0;