Skip to content

Commit

Permalink
fix: TruffleHog
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugoch committed Oct 21, 2024
1 parent c680008 commit 131ae58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/trufflehog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
- name: Secret Scanning
uses: trufflesecurity/trufflehog@main
with:
extra_args: -x test_data/conversations.json
extra_args: -x test_data/.*
2 changes: 1 addition & 1 deletion src/results.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub(crate) enum BenchmarkErrors {
impl Display for BenchmarkErrors {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self {
NoResponses => write!(f, "Backend did not return any valid response."),
NoResponses => write!(f, "Backend did not return any valid response. It is either not responding or test duration is too short."),
}
}
}
Expand Down

0 comments on commit 131ae58

Please sign in to comment.