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
"this seems to be a packetline encoding within a packetline encoding! Including a flush package. Strange, but it's the real deal."
190
+
);
191
+
let expected_progress = &["Resolving deltas: 0% (0/2)\r",
192
+
"Resolving deltas: 50% (1/2)\r",
193
+
"Resolving deltas: 100% (2/2)\r",
194
+
"Resolving deltas: 100% (2/2), completed with 2 local objects.",
195
+
"\nGitHub found 1 vulnerability on the-lean-crate/criner's default branch (1 high). To find out more, visit:\n https://github.com/the-lean-crate/criner/security/dependabot/1\n"
196
+
];
197
+
assert_eq!(
198
+
messages.lock().expect("no poison").as_slice(),
199
+
expected_progress,
200
+
"these look like they are created once the whole pack has been received"
201
+
);
202
+
}
203
+
204
+
assert_eq!(
205
+
out.as_slice().as_bstr(),
206
+
expected.as_bstr(),
207
+
"we are able to reproduce a typical push request by hand with a little bit of juggling"
0 commit comments