You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/helpers.rs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ mod tests {
143
143
&["Avoid bad things happening in future"]
144
144
)
145
145
.message(),
146
-
"Oh no! Something bad happened.\n\nTo try and fix this, you can:\n - Avoid bad things happening in future"
146
+
"Something bad happened. (User error)\n\nTo try and fix this, you can:\n - Avoid bad things happening in future"
147
147
);
148
148
149
149
assert_eq!(
@@ -152,7 +152,7 @@ mod tests {
152
152
&["Avoid bad things happening in future"]
153
153
)
154
154
.message(),
155
-
"Whoops! Something bad happened. (This isn't your fault)\n\nTo try and fix this, you can:\n - Avoid bad things happening in future"
155
+
"Something bad happened. (System failure)\n\nTo try and fix this, you can:\n - Avoid bad things happening in future"
156
156
);
157
157
}
158
158
@@ -165,7 +165,7 @@ mod tests {
165
165
&["Avoid bad things happening in future"]
166
166
)
167
167
.message(),
168
-
"Oh no! Something bad happened.\n\nThis was caused by:\n - You got rate limited\n\nTo try and fix this, you can:\n - Avoid bad things happening in future"
168
+
"Something bad happened. (User error)\n\nThis was caused by:\n - You got rate limited\n\nTo try and fix this, you can:\n - Avoid bad things happening in future"
169
169
);
170
170
171
171
assert_eq!(
@@ -175,7 +175,7 @@ mod tests {
175
175
&["Avoid bad things happening in future"]
176
176
)
177
177
.message(),
178
-
"Whoops! Something bad happened. (This isn't your fault)\n\nThis was caused by:\n - You got rate limited\n\nTo try and fix this, you can:\n - Avoid bad things happening in future"
178
+
"Something bad happened. (System failure)\n\nThis was caused by:\n - You got rate limited\n\nTo try and fix this, you can:\n - Avoid bad things happening in future"
0 commit comments