Skip to content

Instantly share code, notes, and snippets.

@ganwell
Created January 21, 2021 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ganwell/e176c76501c5a38a517f6cfe05cfb29e to your computer and use it in GitHub Desktop.
Save ganwell/e176c76501c5a38a517f6cfe05cfb29e to your computer and use it in GitHub Desktop.
pijul cargo test
Compiling libpijul v1.0.0-alpha.31 (/home/ganwell/git/pijul/libpijul)
error[E0277]: the trait bound `&mut std::io::Stderr: WriteChangeLine` is not satisfied
--> libpijul/src/tests/mod.rs:72:17
|
72 | &mut std::io::stderr(),
| ^^^^^^^^^^^^^^^^^^^^^^ the trait `WriteChangeLine` is not implemented for `&mut std::io::Stderr`
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/mod.rs:91:5
|
91 | output::output_repository_no_pending(repo, changes, txn, channel, "", true).unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ---- ------- --- ------- -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0308]: mismatched types
--> libpijul/src/tests/add_file.rs:37:13
|
37 | let (key, meta, file) = it.next().unwrap().unwrap();
| ^^^^^^^^^^^^^^^^^ --------------------------- this expression has type `(vertex::Position<change_id::ChangeId>, change_id::ChangeId, inode_metadata::InodeMetadata, std::string::String)`
| |
| expected a tuple with 4 elements, found one with 3 elements
|
= note: expected tuple `(vertex::Position<change_id::ChangeId>, change_id::ChangeId, inode_metadata::InodeMetadata, std::string::String)`
found tuple `(_, _, _)`
error[E0308]: mismatched types
--> libpijul/src/tests/add_file.rs:42:13
|
42 | let (file_key, _, _) = it.next().unwrap().unwrap();
| ^^^^^^^^^^^^^^^^ --------------------------- this expression has type `(vertex::Position<change_id::ChangeId>, change_id::ChangeId, inode_metadata::InodeMetadata, std::string::String)`
| |
| expected a tuple with 4 elements, found one with 3 elements
|
= note: expected tuple `(vertex::Position<change_id::ChangeId>, change_id::ChangeId, inode_metadata::InodeMetadata, std::string::String)`
found tuple `(_, _, _)`
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:182:5
|
182 | output::output_repository_no_pending(&mut repo2, &changes, &mut txn, &mut channel, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ---------- -------- -------- ------------ -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:291:5
|
291 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
292 | &mut repo_bob,
| -------------
293 | &changes,
| --------
294 | &mut txn_bob,
| ------------
295 | &mut channel,
| ------------
296 | "",
| --
297 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:304:5
|
304 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
305 | &mut repo_bob,
| -------------
306 | &changes,
| --------
307 | &mut txn_bob,
| ------------
308 | &mut channel,
| ------------
309 | "",
| --
310 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:362:5
|
362 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
363 | &mut repo_bob,
| -------------
364 | &changes,
| --------
365 | &mut txn_bob,
| ------------
366 | &mut channel,
| ------------
367 | "",
| --
368 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:373:5
|
373 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
374 | &mut repo_bob,
| -------------
375 | &changes,
| --------
376 | &mut txn_bob,
| ------------
377 | &mut channel,
| ------------
378 | "",
| --
379 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:386:5
|
386 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
387 | &mut repo_bob,
| -------------
388 | &changes,
| --------
389 | &mut txn_bob,
| ------------
390 | &mut channel,
| ------------
391 | "",
| --
392 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:471:5
|
471 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
472 | &mut repo_bob,
| -------------
473 | &changes,
| --------
474 | &mut txn_bob,
| ------------
475 | &mut channel_bob,
| ----------------
476 | "",
| --
477 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:486:5
|
486 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
487 | &mut repo_bob,
| -------------
488 | &changes,
| --------
489 | &mut txn_bob,
| ------------
490 | &mut channel,
| ------------
491 | "",
| --
492 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:499:5
|
499 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
500 | &mut repo_bob,
| -------------
501 | &changes,
| --------
502 | &mut txn_bob,
| ------------
503 | &mut channel,
| ------------
504 | "",
| --
505 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:519:25
|
519 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
520 | &mut repo_alice,
| ---------------
521 | &changes,
| --------
522 | &mut txn_alice,
| --------------
523 | &mut channel,
| ------------
524 | "",
| --
525 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:535:25
|
535 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
536 | &mut repo_alice,
| ---------------
537 | &changes,
| --------
538 | &mut txn_alice,
| --------------
539 | &mut channel,
| ------------
540 | "",
| --
541 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:547:25
|
547 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
548 | &mut repo_bob,
| -------------
549 | &changes,
| --------
550 | &mut txn_bob,
| ------------
551 | &mut channel_bob,
| ----------------
552 | "",
| --
553 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:559:9
|
559 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
560 | &mut repo_bob,
| -------------
561 | &changes,
| --------
562 | &mut txn_bob,
| ------------
563 | &mut channel_bob,
| ----------------
564 | "",
| --
565 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:577:25
|
577 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
578 | &mut repo_alice,
| ---------------
579 | &changes,
| --------
580 | &mut txn_alice,
| --------------
581 | &mut channel,
| ------------
582 | "",
| --
583 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:596:25
|
596 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
597 | &mut repo_alice,
| ---------------
598 | &changes,
| --------
599 | &mut txn_alice,
| --------------
600 | &mut channel,
| ------------
601 | "",
| --
602 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:608:25
|
608 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
609 | &mut repo_bob,
| -------------
610 | &changes,
| --------
611 | &mut txn_bob,
| ------------
612 | &mut channel_bob,
| ----------------
613 | "",
| --
614 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/add_file.rs:652:5
|
652 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
653 | &mut repo_alice,
| ---------------
654 | &changes,
| --------
655 | &mut txn_alice,
| --------------
656 | &mut channel,
| ------------
657 | "",
| --
658 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/change.rs:177:5
|
177 | output::output_repository_no_pending(&mut repo2, &store, &mut txn2, &mut channel2, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ---------- ------ --------- ------------- -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/change.rs:183:5
|
183 | output::output_repository_no_pending(&mut repo2, &store, &mut txn2, &mut channel2, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ---------- ------ --------- ------------- -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/clone.rs:56:13
|
56 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
57 | &mut repo2,
| ----------
58 | &changes,
| --------
59 | &mut txn2,
| ---------
60 | &mut channel,
| ------------
61 | "",
| --
62 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/clone.rs:119:9
|
119 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
120 | &mut repo2,
| ----------
121 | &changes,
| --------
122 | &mut txn2,
| ---------
123 | &mut channel,
| ------------
124 | "e/f",
| -----
125 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/clone.rs:136:9
|
136 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
137 | &mut repo2,
| ----------
138 | &changes,
| --------
139 | &mut txn2,
| ---------
140 | &mut channel,
| ------------
141 | "",
| --
142 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:26:5
|
26 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
27 | &mut repo_bob,
| -------------
28 | &changes,
| --------
29 | &mut txn,
| --------
30 | &mut channel_bob,
| ----------------
31 | "",
| --
32 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:61:5
|
61 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
62 | &mut repo_alice,
| ---------------
63 | &changes,
| --------
64 | &mut txn,
| --------
65 | &mut channel_alice,
| ------------------
66 | "",
| --
67 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:120:5
|
120 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
121 | &mut repo_bob,
| -------------
122 | &changes,
| --------
123 | &mut txn,
| --------
124 | &mut channel_bob,
| ----------------
125 | "",
| --
126 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:135:5
|
135 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
136 | &mut repo_bob,
| -------------
137 | &changes,
| --------
138 | &mut txn,
| --------
139 | &mut channel_bob,
| ----------------
140 | "",
| --
141 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:150:5
|
150 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
151 | &mut repo_bob,
| -------------
152 | &changes,
| --------
153 | &mut txn,
| --------
154 | &mut channel_bob,
| ----------------
155 | "",
| --
156 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:187:5
|
187 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
188 | &mut repo_bob,
| -------------
189 | &changes,
| --------
190 | &mut txn,
| --------
191 | &mut channel_bob,
| ----------------
192 | "",
| --
193 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:206:5
|
206 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
207 | &mut repo_charlie,
| -----------------
208 | &changes,
| --------
209 | &mut txn,
| --------
210 | &mut channel_charlie,
| --------------------
211 | "",
| --
212 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:249:5
|
249 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
250 | &mut repo_alice,
| ---------------
251 | &changes,
| --------
252 | &mut txn,
| --------
253 | &mut channel_alice,
| ------------------
254 | "",
| --
255 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:303:5
|
303 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
304 | &mut repo_bob,
| -------------
305 | &changes,
| --------
306 | &mut txn,
| --------
307 | &mut channel_bob,
| ----------------
308 | "",
| --
309 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:317:5
|
317 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
318 | &mut repo_bob,
| -------------
319 | &changes,
| --------
320 | &mut txn,
| --------
321 | &mut channel_bob,
| ----------------
322 | "",
| --
323 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:359:5
|
359 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
360 | &mut repo_charlie,
| -----------------
361 | &changes,
| --------
362 | &mut txn,
| --------
363 | &mut channel_charlie,
| --------------------
364 | "",
| --
365 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:374:5
|
374 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
375 | &mut repo_charlie,
| -----------------
376 | &changes,
| --------
377 | &mut txn,
| --------
378 | &mut channel_charlie,
| --------------------
379 | "",
| --
380 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:415:5
|
415 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
416 | &mut repo_bob,
| -------------
417 | &changes,
| --------
418 | &mut txn,
| --------
419 | &mut channel_bob,
| ----------------
420 | "",
| --
421 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:445:5
|
445 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
446 | &mut repo_alice,
| ---------------
447 | &changes,
| --------
448 | &mut txn,
| --------
449 | &mut channel_alice,
| ------------------
450 | "",
| --
451 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:484:5
|
484 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
485 | &mut repo_bob,
| -------------
486 | &changes,
| --------
487 | &mut txn,
| --------
488 | &mut channel_bob,
| ----------------
489 | "",
| --
490 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:497:5
|
497 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
498 | &mut repo_bob,
| -------------
499 | &changes,
| --------
500 | &mut txn,
| --------
501 | &mut channel_bob,
| ----------------
502 | "",
| --
503 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:534:5
|
534 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
535 | &mut repo,
| ---------
536 | &changes,
| --------
537 | &mut txn,
| --------
538 | &mut channel_bob,
| ----------------
539 | "",
| --
540 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:564:5
|
564 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
565 | &mut repo,
| ---------
566 | &changes,
| --------
567 | &mut txn,
| --------
568 | &mut channel_alice,
| ------------------
569 | "",
| --
570 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:606:5
|
606 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
607 | &mut repo,
| ---------
608 | &changes,
| --------
609 | &mut txn,
| --------
610 | &mut channel_alice,
| ------------------
611 | "",
| --
612 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:623:5
|
623 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
624 | &mut repo,
| ---------
625 | &changes,
| --------
626 | &mut txn,
| --------
627 | &mut channel_bob,
| ----------------
628 | "",
| --
629 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:663:5
|
663 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
664 | &mut repo,
| ---------
665 | &changes,
| --------
666 | &mut txn,
| --------
667 | &mut channel_bob,
| ----------------
668 | "",
| --
669 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:693:5
|
693 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
694 | &mut repo,
| ---------
695 | &changes,
| --------
696 | &mut txn,
| --------
697 | &mut channel_alice,
| ------------------
698 | "",
| --
699 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:723:5
|
723 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
724 | &mut repo,
| ---------
725 | &changes,
| --------
726 | &mut txn,
| --------
727 | &mut channel_alice,
| ------------------
728 | "",
| --
729 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:739:5
|
739 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
740 | &mut repo,
| ---------
741 | &changes,
| --------
742 | &mut txn,
| --------
743 | &mut channel_bob,
| ----------------
744 | "",
| --
745 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:783:5
|
783 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
784 | &mut repo,
| ---------
785 | &changes,
| --------
786 | &mut txn,
| --------
787 | &mut channel_bob,
| ----------------
788 | "",
| --
789 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:825:5
|
825 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
826 | &mut repo,
| ---------
827 | &changes,
| --------
828 | &mut txn,
| --------
829 | &mut channel_alice,
| ------------------
830 | "",
| --
831 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:861:5
|
861 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
862 | &mut repo,
| ---------
863 | &changes,
| --------
864 | &mut txn,
| --------
865 | &mut channel_alice,
| ------------------
866 | "",
| --
867 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:880:5
|
880 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
881 | &mut repo,
| ---------
882 | &changes,
| --------
883 | &mut txn,
| --------
884 | &mut channel_bob,
| ----------------
885 | "",
| --
886 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:923:5
|
923 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
924 | &mut repo_bob,
| -------------
925 | &changes,
| --------
926 | &mut txn,
| --------
927 | &mut channel_bob,
| ----------------
928 | "",
| --
929 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:957:5
|
957 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
958 | &mut repo_alice,
| ---------------
959 | &changes,
| --------
960 | &mut txn,
| --------
961 | &mut channel_alice,
| ------------------
962 | "",
| --
963 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1007:5
|
1007 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1008 | &mut repo_bob,
| -------------
1009 | &changes,
| --------
1010 | &mut txn,
| --------
1011 | &mut channel_bob,
| ----------------
1012 | "",
| --
1013 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1022:5
|
1022 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1023 | &mut repo_bob,
| -------------
1024 | &changes,
| --------
1025 | &mut txn,
| --------
1026 | &mut channel_bob,
| ----------------
1027 | "",
| --
1028 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1059:5
|
1059 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1060 | &mut repo_bob,
| -------------
1061 | &changes,
| --------
1062 | &mut txn,
| --------
1063 | &mut channel_bob,
| ----------------
1064 | "",
| --
1065 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1093:5
|
1093 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1094 | &mut repo_alice,
| ---------------
1095 | &changes,
| --------
1096 | &mut txn,
| --------
1097 | &mut channel_alice,
| ------------------
1098 | "",
| --
1099 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1148:5
|
1148 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1149 | &mut repo_bob,
| -------------
1150 | &changes,
| --------
1151 | &mut txn,
| --------
1152 | &mut channel_bob,
| ----------------
1153 | "",
| --
1154 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1163:5
|
1163 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1164 | &mut repo_bob,
| -------------
1165 | &changes,
| --------
1166 | &mut txn,
| --------
1167 | &mut channel_bob,
| ----------------
1168 | "",
| --
1169 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1303:5
|
1303 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1304 | &mut repo_bob,
| -------------
1305 | &changes,
| --------
1306 | &mut txn,
| --------
1307 | &mut channel_bob,
| ----------------
1308 | "",
| --
1309 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1337:5
|
1337 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1338 | &mut repo_alice,
| ---------------
1339 | &changes,
| --------
1340 | &mut txn,
| --------
1341 | &mut channel_alice,
| ------------------
1342 | "",
| --
1343 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1362:5
|
1362 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1363 | &mut repo_bob,
| -------------
1364 | &changes,
| --------
1365 | &mut txn,
| --------
1366 | &mut channel_bob,
| ----------------
1367 | "",
| --
1368 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1377:5
|
1377 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1378 | &mut repo_bob,
| -------------
1379 | &changes,
| --------
1380 | &mut txn,
| --------
1381 | &mut channel_bob,
| ----------------
1382 | "",
| --
1383 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1423:5
|
1423 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1424 | &mut repo_bob,
| -------------
1425 | &changes,
| --------
1426 | &mut txn,
| --------
1427 | &mut channel_bob,
| ----------------
1428 | "",
| --
1429 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1460:5
|
1460 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1461 | &mut repo_alice,
| ---------------
1462 | &changes,
| --------
1463 | &mut txn,
| --------
1464 | &mut channel_alice,
| ------------------
1465 | "",
| --
1466 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1484:5
|
1484 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1485 | &mut repo_bob,
| -------------
1486 | &changes,
| --------
1487 | &mut txn,
| --------
1488 | &mut channel_bob,
| ----------------
1489 | "",
| --
1490 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1510:5
|
1510 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1511 | &mut repo_alice,
| ---------------
1512 | &changes,
| --------
1513 | &mut txn,
| --------
1514 | &mut channel_alice,
| ------------------
1515 | "",
| --
1516 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1525:5
|
1525 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1526 | &mut repo_bob,
| -------------
1527 | &changes,
| --------
1528 | &mut txn,
| --------
1529 | &mut channel_bob,
| ----------------
1530 | "",
| --
1531 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1586:5
|
1586 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1587 | &mut repo_bob,
| -------------
1588 | &changes,
| --------
1589 | &mut txn_bob,
| ------------
1590 | &mut channel_bob,
| ----------------
1591 | "",
| --
1592 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1615:5
|
1615 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1616 | &mut repo_bob,
| -------------
1617 | &changes,
| --------
1618 | &mut txn_bob,
| ------------
1619 | &mut channel_bob,
| ----------------
1620 | "",
| --
1621 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1638:5
|
1638 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1639 | &mut repo_bob,
| -------------
1640 | &changes,
| --------
1641 | &mut txn_bob,
| ------------
1642 | &mut channel_bob,
| ----------------
1643 | "",
| --
1644 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1654:5
|
1654 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1655 | &mut repo_alice,
| ---------------
1656 | &changes,
| --------
1657 | &mut txn_alice,
| --------------
1658 | &mut channel_alice,
| ------------------
1659 | "",
| --
1660 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1669:5
|
1669 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1670 | &mut repo_alice,
| ---------------
1671 | &changes,
| --------
1672 | &mut txn_alice,
| --------------
1673 | &mut channel_alice,
| ------------------
1674 | "",
| --
1675 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1725:5
|
1725 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1726 | &mut repo_bob,
| -------------
1727 | &changes,
| --------
1728 | &mut txn_bob,
| ------------
1729 | &mut channel_bob,
| ----------------
1730 | "",
| --
1731 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1748:5
|
1748 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1749 | &mut repo_bob,
| -------------
1750 | &changes,
| --------
1751 | &mut txn_bob,
| ------------
1752 | &mut channel_bob,
| ----------------
1753 | "",
| --
1754 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1770:5
|
1770 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1771 | &mut repo_bob,
| -------------
1772 | &changes,
| --------
1773 | &mut txn_bob,
| ------------
1774 | &mut channel_bob,
| ----------------
1775 | "",
| --
1776 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1786:5
|
1786 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1787 | &mut repo_alice,
| ---------------
1788 | &changes,
| --------
1789 | &mut txn_alice,
| --------------
1790 | &mut channel_alice,
| ------------------
1791 | "",
| --
1792 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1825:5
|
1825 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1826 | &mut repo_bob,
| -------------
1827 | &changes,
| --------
1828 | &mut txn,
| --------
1829 | &mut channel_bob,
| ----------------
1830 | "",
| --
1831 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1844:5
|
1844 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1845 | &mut repo_charlie,
| -----------------
1846 | &changes,
| --------
1847 | &mut txn,
| --------
1848 | &mut channel_charlie,
| --------------------
1849 | "",
| --
1850 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1885:5
|
1885 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1886 | &mut repo_alice,
| ---------------
1887 | &changes,
| --------
1888 | &mut txn,
| --------
1889 | &mut channel_alice,
| ------------------
1890 | "",
| --
1891 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1902:5
|
1902 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1903 | &mut repo_alice,
| ---------------
1904 | &changes,
| --------
1905 | &mut txn,
| --------
1906 | &mut channel_alice,
| ------------------
1907 | "",
| --
1908 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1959:5
|
1959 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1960 | &mut repo_bob,
| -------------
1961 | &changes,
| --------
1962 | &mut txn,
| --------
1963 | &mut channel_bob,
| ----------------
1964 | "",
| --
1965 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:1978:5
|
1978 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1979 | &mut repo_charlie,
| -----------------
1980 | &changes,
| --------
1981 | &mut txn,
| --------
1982 | &mut channel_charlie,
| --------------------
1983 | "",
| --
1984 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2024:5
|
2024 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2025 | &mut repo_alice,
| ---------------
2026 | &changes,
| --------
2027 | &mut txn,
| --------
2028 | &mut channel_alice,
| ------------------
2029 | "",
| --
2030 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2054:5
|
2054 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2055 | &mut repo_bob,
| -------------
2056 | &changes,
| --------
2057 | &mut txn,
| --------
2058 | &mut channel_bob,
| ----------------
2059 | "",
| --
2060 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2084:5
|
2084 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2085 | &mut repo_bob,
| -------------
2086 | &changes,
| --------
2087 | &mut txn,
| --------
2088 | &mut channel_bob,
| ----------------
2089 | "",
| --
2090 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2110:5
|
2110 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2111 | &mut repo_bob,
| -------------
2112 | &changes,
| --------
2113 | &mut txn,
| --------
2114 | &mut channel_bob,
| ----------------
2115 | "",
| --
2116 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2127:5
|
2127 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2128 | &mut repo_bob,
| -------------
2129 | &changes,
| --------
2130 | &mut txn,
| --------
2131 | &mut channel_bob,
| ----------------
2132 | "",
| --
2133 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2173:5
|
2173 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2174 | &mut repo_bob,
| -------------
2175 | &changes,
| --------
2176 | &mut txn,
| --------
2177 | &mut channel_bob,
| ----------------
2178 | "",
| --
2179 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2228:5
|
2228 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2229 | &mut repo_alice,
| ---------------
2230 | &changes,
| --------
2231 | &mut txn,
| --------
2232 | &mut channel_alice,
| ------------------
2233 | "",
| --
2234 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2260:5
|
2260 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2261 | &mut repo_bob,
| -------------
2262 | &changes,
| --------
2263 | &mut txn,
| --------
2264 | &mut channel_bob,
| ----------------
2265 | "",
| --
2266 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2295:5
|
2295 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2296 | &mut repo_charlie,
| -----------------
2297 | &changes,
| --------
2298 | &mut txn,
| --------
2299 | &mut channel_charlie,
| --------------------
2300 | "",
| --
2301 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2319:5
|
2319 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2320 | &mut repo_bob,
| -------------
2321 | &changes,
| --------
2322 | &mut txn,
| --------
2323 | &mut channel_bob,
| ----------------
2324 | "",
| --
2325 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2343:5
|
2343 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2344 | &mut repo_bob,
| -------------
2345 | &changes,
| --------
2346 | &mut txn,
| --------
2347 | &mut channel_bob,
| ----------------
2348 | "",
| --
2349 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2376:5
|
2376 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2377 | &mut repo_charlie,
| -----------------
2378 | &changes,
| --------
2379 | &mut txn,
| --------
2380 | &mut channel_charlie,
| --------------------
2381 | "",
| --
2382 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2428:5
|
2428 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2429 | &mut repo_bob,
| -------------
2430 | &changes,
| --------
2431 | &mut txn_bob,
| ------------
2432 | &mut channel_bob,
| ----------------
2433 | "",
| --
2434 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2454:5
|
2454 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2455 | &mut repo_alice,
| ---------------
2456 | &changes,
| --------
2457 | &mut txn_alice,
| --------------
2458 | &mut channel_alice,
| ------------------
2459 | "",
| --
2460 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2515:5
|
2515 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2516 | &mut repo_bob,
| -------------
2517 | &changes,
| --------
2518 | &mut txn_bob,
| ------------
2519 | &mut channel_bob,
| ----------------
2520 | "",
| --
2521 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/conflict.rs:2535:5
|
2535 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
2536 | &mut repo_alice,
| ---------------
2537 | &changes,
| --------
2538 | &mut txn_alice,
| --------------
2539 | &mut channel_alice,
| ------------------
2540 | "",
| --
2541 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> libpijul/src/tests/conflict.rs:2562:27
|
2562 | if !is_alive(txn, T::graph(&channel), vertex.inode_vertex()).unwrap() {
| ^^^^^^^^ -------- supplied 1 argument
| |
| expected 2 arguments
|
note: associated function defined here
--> libpijul/src/pristine/mod.rs:158:8
|
158 | fn graph<'a>(&self, channel: &'a Self::Channel) -> &'a Self::Graph;
| ^^^^^
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> libpijul/src/tests/conflict.rs:2565:17
|
2565 | T::graph(&channel),
| ^^^^^^^^ -------- supplied 1 argument
| |
| expected 2 arguments
|
note: associated function defined here
--> libpijul/src/pristine/mod.rs:158:8
|
158 | fn graph<'a>(&self, channel: &'a Self::Channel) -> &'a Self::Graph;
| ^^^^^
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:47:5
|
47 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
48 | &mut repo_bob,
| -------------
49 | &changes,
| --------
50 | &mut txn_bob,
| ------------
51 | &mut channel_bob,
| ----------------
52 | "",
| --
53 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:81:21
|
81 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
82 | &mut repo_alice,
| ---------------
83 | &changes,
| --------
84 | &mut txn_alice,
| --------------
85 | &mut channel_alice,
| ------------------
86 | "",
| --
87 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:97:21
|
97 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
98 | &mut repo_bob,
| -------------
99 | &changes,
| --------
100 | &mut txn_bob,
| ------------
101 | &mut channel_bob,
| ----------------
102 | alice,
| -----
103 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:108:21
|
108 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
109 | &mut repo_bob,
| -------------
110 | &changes,
| --------
111 | &mut txn_bob,
| ------------
112 | &mut channel_bob,
| ----------------
113 | bob,
| ---
114 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:120:21
|
120 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
121 | &mut repo_bob,
| -------------
122 | &changes,
| --------
123 | &mut txn_bob,
| ------------
124 | &mut channel_bob,
| ----------------
125 | "",
| --
126 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:136:21
|
136 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
137 | &mut repo_bob,
| -------------
138 | &changes,
| --------
139 | &mut txn_bob,
| ------------
140 | &mut channel_bob,
| ----------------
141 | "",
| --
142 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:150:21
|
150 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
151 | &mut repo_alice,
| ---------------
152 | &changes,
| --------
153 | &mut txn_alice,
| --------------
154 | &mut channel_alice,
| ------------------
155 | "",
| --
156 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:205:5
|
205 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
206 | &mut repo_bob,
| -------------
207 | &changes,
| --------
208 | &mut txn_bob,
| ------------
209 | &mut channel_bob,
| ----------------
210 | "",
| --
211 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:240:5
|
240 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
241 | &mut repo_alice,
| ---------------
242 | &changes,
| --------
243 | &mut txn_alice,
| --------------
244 | &mut channel_alice,
| ------------------
245 | "",
| --
246 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:252:21
|
252 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
253 | &mut repo_bob,
| -------------
254 | &changes,
| --------
255 | &mut txn_bob,
| ------------
256 | &mut channel_bob,
| ----------------
257 | "",
| --
258 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:292:21
|
292 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
293 | &mut repo_bob,
| -------------
294 | &changes,
| --------
295 | &mut txn_bob,
| ------------
296 | &mut channel_bob,
| ----------------
297 | "",
| --
298 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:347:5
|
347 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
348 | &mut repo_bob,
| -------------
349 | &changes,
| --------
350 | &mut txn_bob,
| ------------
351 | &mut channel_bob,
| ----------------
352 | "",
| --
353 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:383:5
|
383 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
384 | &mut repo_charlie,
| -----------------
385 | &changes,
| --------
386 | &mut txn_charlie,
| ----------------
387 | &mut channel_charlie,
| --------------------
388 | "",
| --
389 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:405:5
|
405 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
406 | &mut repo_charlie,
| -----------------
407 | &changes,
| --------
408 | &mut txn_charlie,
| ----------------
409 | &mut channel_charlie,
| --------------------
410 | "",
| --
411 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:433:5
|
433 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
434 | &mut repo_charlie,
| -----------------
435 | &changes,
| --------
436 | &mut txn_charlie,
| ----------------
437 | &mut channel_charlie,
| --------------------
438 | "",
| --
439 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:449:5
|
449 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
450 | &mut repo_alice,
| ---------------
451 | &changes,
| --------
452 | &mut txn_alice,
| --------------
453 | &mut channel_alice,
| ------------------
454 | "",
| --
455 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:475:5
|
475 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
476 | &mut repo_bob,
| -------------
477 | &changes,
| --------
478 | &mut txn_bob,
| ------------
479 | &mut channel_bob,
| ----------------
480 | "",
| --
481 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:524:5
|
524 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
525 | &mut repo_bob,
| -------------
526 | &changes,
| --------
527 | &mut txn_bob,
| ------------
528 | &mut channel_bob,
| ----------------
529 | "",
| --
530 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:558:5
|
558 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
559 | &mut repo_alice,
| ---------------
560 | &changes,
| --------
561 | &mut txn_alice,
| --------------
562 | &mut channel_alice,
| ------------------
563 | "",
| --
564 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:595:5
|
595 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
596 | &mut repo_bob,
| -------------
597 | &changes,
| --------
598 | &mut txn_bob,
| ------------
599 | &mut channel_bob,
| ----------------
600 | "",
| --
601 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:607:5
|
607 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
608 | &mut repo_bob,
| -------------
609 | &changes,
| --------
610 | &mut txn_bob,
| ------------
611 | &mut channel_bob,
| ----------------
612 | "",
| --
613 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:652:5
|
652 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
653 | &mut repo_bob,
| -------------
654 | &changes,
| --------
655 | &mut txn_bob,
| ------------
656 | &mut channel_bob,
| ----------------
657 | "",
| --
658 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:689:5
|
689 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
690 | &mut repo_alice,
| ---------------
691 | &changes,
| --------
692 | &mut txn_alice,
| --------------
693 | &mut channel_alice,
| ------------------
694 | "",
| --
695 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:721:5
|
721 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
722 | &mut repo_bob,
| -------------
723 | &changes,
| --------
724 | &mut txn_bob,
| ------------
725 | &mut channel_bob,
| ----------------
726 | "",
| --
727 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:733:5
|
733 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
734 | &mut repo_bob,
| -------------
735 | &changes,
| --------
736 | &mut txn_bob,
| ------------
737 | &mut channel_bob,
| ----------------
738 | "",
| --
739 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:780:5
|
780 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
781 | &mut repo_bob,
| -------------
782 | &changes,
| --------
783 | &mut txn_bob,
| ------------
784 | &mut channel_bob,
| ----------------
785 | "",
| --
786 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:816:5
|
816 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
817 | &mut repo_alice,
| ---------------
818 | &changes,
| --------
819 | &mut txn_alice,
| --------------
820 | &mut channel_alice,
| ------------------
821 | "",
| --
822 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:848:5
|
848 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
849 | &mut repo_bob,
| -------------
850 | &changes,
| --------
851 | &mut txn_bob,
| ------------
852 | &mut channel_bob,
| ----------------
853 | "",
| --
854 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:861:5
|
861 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
862 | &mut repo_bob,
| -------------
863 | &changes,
| --------
864 | &mut txn_bob,
| ------------
865 | &mut channel_bob,
| ----------------
866 | "",
| --
867 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:913:5
|
913 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
914 | &mut repo_bob,
| -------------
915 | &changes,
| --------
916 | &mut txn_bob,
| ------------
917 | &mut channel_bob,
| ----------------
918 | "",
| --
919 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:925:21
|
925 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
926 | &mut repo_charlie,
| -----------------
927 | &changes,
| --------
928 | &mut txn_charlie,
| ----------------
929 | &mut channel_charlie,
| --------------------
930 | "",
| --
931 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:978:21
|
978 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
979 | &mut repo_alice,
| ---------------
980 | &changes,
| --------
981 | &mut txn_alice,
| --------------
982 | &mut channel_alice,
| ------------------
983 | "",
| --
984 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1019:21
|
1019 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1020 | &mut repo_bob,
| -------------
1021 | &changes,
| --------
1022 | &mut txn_bob,
| ------------
1023 | &mut channel_bob,
| ----------------
1024 | "",
| --
1025 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1036:21
|
1036 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1037 | &mut repo_bob,
| -------------
1038 | &changes,
| --------
1039 | &mut txn_bob,
| ------------
1040 | &mut channel_bob,
| ----------------
1041 | "",
| --
1042 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1054:21
|
1054 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1055 | &mut repo_charlie,
| -----------------
1056 | &changes,
| --------
1057 | &mut txn_charlie,
| ----------------
1058 | &mut channel_charlie,
| --------------------
1059 | "",
| --
1060 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1075:21
|
1075 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1076 | &mut repo_charlie,
| -----------------
1077 | &changes,
| --------
1078 | &mut txn_charlie,
| ----------------
1079 | &mut channel_charlie,
| --------------------
1080 | "",
| --
1081 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1135:5
|
1135 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1136 | &mut repo_bob,
| -------------
1137 | &changes,
| --------
1138 | &mut txn_bob,
| ------------
1139 | &mut channel_bob,
| ----------------
1140 | "",
| --
1141 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1150:21
|
1150 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1151 | &mut repo_bob,
| -------------
1152 | &changes,
| --------
1153 | &mut txn_bob,
| ------------
1154 | &mut channel_bob,
| ----------------
1155 | "",
| --
1156 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1169:21
|
1169 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1170 | &mut repo_bob,
| -------------
1171 | &changes,
| --------
1172 | &mut txn_bob,
| ------------
1173 | &mut channel_bob,
| ----------------
1174 | "",
| --
1175 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1185:21
|
1185 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1186 | &mut repo_alice,
| ---------------
1187 | &changes,
| --------
1188 | &mut txn_alice,
| --------------
1189 | &mut channel_alice,
| ------------------
1190 | "",
| --
1191 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1202:21
|
1202 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1203 | &mut repo_charlie,
| -----------------
1204 | &changes,
| --------
1205 | &mut txn_charlie,
| ----------------
1206 | &mut channel_charlie,
| --------------------
1207 | "",
| --
1208 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1240:21
|
1240 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1241 | &mut repo_charlie,
| -----------------
1242 | &changes,
| --------
1243 | &mut txn_charlie,
| ----------------
1244 | &mut channel_charlie,
| --------------------
1245 | "",
| --
1246 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1258:21
|
1258 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1259 | &mut repo_alice,
| ---------------
1260 | &changes,
| --------
1261 | &mut txn_alice,
| --------------
1262 | &mut channel_alice,
| ------------------
1263 | "",
| --
1264 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1276:21
|
1276 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1277 | &mut repo_bob,
| -------------
1278 | &changes,
| --------
1279 | &mut txn_bob,
| ------------
1280 | &mut channel_bob,
| ----------------
1281 | "",
| --
1282 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1319:5
|
1319 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1320 | &mut repo_bob,
| -------------
1321 | &changes,
| --------
1322 | &mut txn_bob,
| ------------
1323 | &mut channel_bob,
| ----------------
1324 | "",
| --
1325 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1351:21
|
1351 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1352 | &mut repo_bob,
| -------------
1353 | &changes,
| --------
1354 | &mut txn_bob,
| ------------
1355 | &mut channel_bob,
| ----------------
1356 | "",
| --
1357 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1373:21
|
1373 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1374 | &mut repo_bob,
| -------------
1375 | &changes,
| --------
1376 | &mut txn_bob,
| ------------
1377 | &mut channel_bob,
| ----------------
1378 | "",
| --
1379 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1391:21
|
1391 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1392 | &mut repo_alice,
| ---------------
1393 | &changes,
| --------
1394 | &mut txn_alice,
| --------------
1395 | &mut channel_alice,
| ------------------
1396 | "",
| --
1397 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1408:21
|
1408 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1409 | &mut repo_alice,
| ---------------
1410 | &changes,
| --------
1411 | &mut txn_alice,
| --------------
1412 | &mut channel_alice,
| ------------------
1413 | "",
| --
1414 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1452:5
|
1452 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1453 | &mut repo_bob,
| -------------
1454 | &changes,
| --------
1455 | &mut txn_bob,
| ------------
1456 | &mut channel_bob,
| ----------------
1457 | "",
| --
1458 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1509:5
|
1509 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1510 | &mut repo_alice,
| ---------------
1511 | &changes,
| --------
1512 | &mut txn_alice,
| --------------
1513 | &mut channel_alice,
| ------------------
1514 | "",
| --
1515 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1551:5
|
1551 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1552 | &mut repo_bob,
| -------------
1553 | &changes,
| --------
1554 | &mut txn_bob,
| ------------
1555 | &mut channel_bob,
| ----------------
1556 | "",
| --
1557 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1583:21
|
1583 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1584 | &mut repo_bob,
| -------------
1585 | &changes,
| --------
1586 | &mut txn_bob,
| ------------
1587 | &mut channel_bob,
| ----------------
1588 | "",
| --
1589 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1599:21
|
1599 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1600 | &mut repo_bob,
| -------------
1601 | &changes,
| --------
1602 | &mut txn_bob,
| ------------
1603 | &mut channel_bob,
| ----------------
1604 | "",
| --
1605 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1617:21
|
1617 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1618 | &mut repo_alice,
| ---------------
1619 | &changes,
| --------
1620 | &mut txn_alice,
| --------------
1621 | &mut channel_alice,
| ------------------
1622 | "",
| --
1623 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/file_conflicts.rs:1634:21
|
1634 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
1635 | &mut repo_alice,
| ---------------
1636 | &changes,
| --------
1637 | &mut txn_alice,
| --------------
1638 | &mut channel_alice,
| ------------------
1639 | "",
| --
1640 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/filesystem.rs:28:5
|
28 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channel, "", true)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------ -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/filesystem.rs:66:5
|
66 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channel, "", true)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------ -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/filesystem.rs:101:5
|
101 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channel, "", true)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------ -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/filesystem.rs:139:5
|
139 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channel, "", true)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------ -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/missing_context.rs:45:5
|
45 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
46 | &mut repo_bob,
| -------------
47 | &changes,
| --------
48 | &mut txn_bob,
| ------------
49 | &mut channel_bob,
| ----------------
50 | "",
| --
51 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/missing_context.rs:96:5
|
96 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
97 | &mut repo_alice,
| ---------------
98 | &changes,
| --------
99 | &mut txn_alice,
| --------------
100 | &mut channel_alice,
| ------------------
101 | "",
| --
102 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/missing_context.rs:165:5
|
165 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
166 | &mut repo_bob,
| -------------
167 | &changes,
| --------
168 | &mut txn_bob,
| ------------
169 | &mut channel_bob,
| ----------------
170 | "",
| --
171 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/missing_context.rs:235:5
|
235 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
236 | &mut repo_bob,
| -------------
237 | &changes,
| --------
238 | &mut txn_bob,
| ------------
239 | &mut channel_bob,
| ----------------
240 | "",
| --
241 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/missing_context.rs:276:5
|
276 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
277 | &mut repo_alice,
| ---------------
278 | &changes,
| --------
279 | &mut txn_alice,
| --------------
280 | &mut channel_alice,
| ------------------
281 | "",
| --
282 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/missing_context.rs:303:5
|
303 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
304 | &mut repo_alice,
| ---------------
305 | &changes,
| --------
306 | &mut txn_alice,
| --------------
307 | &mut channel_alice,
| ------------------
308 | "",
| --
309 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/partial.rs:92:9
|
92 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
93 | &mut repo2,
| ----------
94 | &changes,
| --------
95 | &mut txn2,
| ---------
96 | &mut channel,
| ------------
97 | "e/f",
| -----
98 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/partial.rs:109:9
|
109 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
110 | &mut repo2,
| ----------
111 | &changes,
| --------
112 | &mut txn2,
| ---------
113 | &mut channel,
| ------------
114 | "",
| --
115 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/rm_file.rs:35:5
|
35 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
36 | &mut repo_bob,
| -------------
37 | &changes,
| --------
38 | &mut txn_bob,
| ------------
39 | &mut channel_bob,
| ----------------
40 | "",
| --
41 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/rm_file.rs:54:5
|
54 | output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
55 | &mut repo_alice,
| ---------------
56 | &changes,
| --------
57 | &mut txn_alice,
| --------------
58 | &mut channel_alice,
| ------------------
59 | "",
| --
60 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/rollback.rs:42:5
|
42 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channela, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------- -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/rollback.rs:117:5
|
117 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channela, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------- -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:31:21
|
31 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
32 | &mut repo,
| ---------
33 | &changes,
| --------
34 | &mut txn,
| --------
35 | &mut channel,
| ------------
36 | "",
| --
37 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:78:21
|
78 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
79 | &mut repo,
| ---------
80 | &changes,
| --------
81 | &mut txn,
| --------
82 | &mut channel,
| ------------
83 | "",
| --
84 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:134:5
|
134 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channel, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------ -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:183:5
|
183 | output::output_repository_no_pending(&mut repo2, &changes, &mut txn2, &mut channel2, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ---------- -------- --------- ------------- -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:185:5
|
185 | output::output_repository_no_pending(&mut repo3, &changes, &mut txn3, &mut channel3, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ---------- -------- --------- ------------- -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:219:5
|
219 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channel, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------ -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:259:5
|
259 | output::output_repository_no_pending(&mut repo2, &changes, &mut txn2, &mut channel2, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ---------- -------- --------- ------------- -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:288:21
|
288 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
289 | &mut repo,
| ---------
290 | &changes,
| --------
291 | &mut txn,
| --------
292 | &mut channel,
| ------------
293 | "",
| --
294 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:331:21
|
331 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
332 | &mut repo,
| ---------
333 | &changes,
| --------
334 | &mut txn2,
| ---------
335 | &mut channel,
| ------------
336 | "",
| --
337 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:367:5
|
367 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channel, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------ -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:377:21
|
377 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
378 | &mut repo,
| ---------
379 | &changes,
| --------
380 | &mut txn,
| --------
381 | &mut channel,
| ------------
382 | "",
| --
383 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:466:5
|
466 | output::output_repository_no_pending(&mut repo, &changes, &mut txn, &mut channel, "", true)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --------- -------- -------- ------------ -- ---- supplied 6 arguments
| |
| expected 7 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:504:21
|
504 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
505 | &mut repo,
| ---------
506 | &changes,
| --------
507 | &mut txn,
| --------
508 | &mut channel,
| ------------
509 | "",
| --
510 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:521:21
|
521 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
522 | &mut repo,
| ---------
523 | &changes,
| --------
524 | &mut txn,
| --------
525 | &mut channel,
| ------------
526 | "",
| --
527 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:569:21
|
569 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
570 | &mut repo,
| ---------
571 | &changes,
| --------
572 | &mut txn,
| --------
573 | &mut channel,
| ------------
574 | "",
| --
575 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:603:21
|
603 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
604 | &mut repo,
| ---------
605 | &changes,
| --------
606 | &mut txn,
| --------
607 | &mut channel,
| ------------
608 | "",
| --
609 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:692:21
|
692 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
693 | &mut repo,
| ---------
694 | &changes,
| --------
695 | &mut txn,
| --------
696 | &mut channel,
| ------------
697 | "",
| --
698 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:710:21
|
710 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
711 | &mut repo,
| ---------
712 | &changes,
| --------
713 | &mut txn,
| --------
714 | &mut channel,
| ------------
715 | "",
| --
716 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:780:21
|
780 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
781 | &mut repo,
| ---------
782 | &changes,
| --------
783 | &mut txn,
| --------
784 | &mut channel,
| ------------
785 | "",
| --
786 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:846:21
|
846 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
847 | &mut repo,
| ---------
848 | &changes,
| --------
849 | &mut txn,
| --------
850 | &mut channel,
| ------------
851 | "",
| --
852 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error[E0061]: this function takes 7 arguments but 6 arguments were supplied
--> libpijul/src/tests/unrecord.rs:886:21
|
886 | let conflicts = output::output_repository_no_pending(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 7 arguments
887 | &mut repo,
| ---------
888 | &changes,
| --------
889 | &mut txn,
| --------
890 | &mut channel,
| ------------
891 | "",
| --
892 | true,
| ---- supplied 6 arguments
|
note: function defined here
--> libpijul/src/output/output.rs:30:8
|
30 | pub fn output_repository_no_pending<T: MutTxnT, R: WorkingCopy, P: ChangeStore>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31 | repo: &mut R,
| ------------
32 | changes: &P,
| -----------
33 | txn: &mut T,
| -----------
34 | channel: &mut ChannelRef<T>,
| ---------------------------
35 | prefix: &str,
| ------------
36 | output_name_conflicts: bool,
| ---------------------------
37 | if_modified_since: Option<std::time::SystemTime>,
| ------------------------------------------------
error: aborting due to 197 previous errors
Some errors have detailed explanations: E0061, E0277, E0308.
For more information about an error, try `rustc --explain E0061`.
error: could not compile `libpijul`
To learn more, run the command again with --verbose.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment