Skip to content

Commit

Permalink
update test names
Browse files Browse the repository at this point in the history
  • Loading branch information
samkim-crypto committed Apr 30, 2024
1 parent 6d72470 commit f2bc2f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zk-sdk/src/sigma_proofs/percentage_with_cap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ mod test {
use {super::*, crate::encryption::pedersen::Pedersen};

#[test]
fn test_fee_above_max_proof() {
fn test_proof_above_max_proof() {
let transfer_amount: u64 = 55;
let max_value: u64 = 3;

Expand Down Expand Up @@ -602,7 +602,7 @@ mod test {
}

#[test]
fn test_fee_below_max_proof() {
fn test_proof_below_max_proof() {
let transfer_amount: u64 = 1;
let max_value: u64 = 3;

Expand Down Expand Up @@ -654,7 +654,7 @@ mod test {
}

#[test]
fn test_fee_delta_is_zero() {
fn test_proof_delta_is_zero() {
let transfer_amount: u64 = 100;
let max_value: u64 = 3;

Expand Down

0 comments on commit f2bc2f6

Please sign in to comment.