@@ -281,7 +281,7 @@ func TestContainerPTY(t *testing.T) {
281
281
}
282
282
defer container .Delete (ctx , WithSnapshotCleanup )
283
283
284
- direct , err := newDirectIOWithTerminal (ctx )
284
+ direct , err := newDirectIO (ctx , true )
285
285
if err != nil {
286
286
t .Fatal (err )
287
287
}
@@ -360,7 +360,7 @@ func TestContainerAttach(t *testing.T) {
360
360
361
361
expected := "hello" + newLine
362
362
363
- direct , err := newDirectIOStandard (ctx )
363
+ direct , err := newDirectIO (ctx , false )
364
364
if err != nil {
365
365
t .Fatal (err )
366
366
}
@@ -429,24 +429,12 @@ func TestContainerAttach(t *testing.T) {
429
429
}
430
430
}
431
431
432
- func newDirectIOStandard (ctx context.Context ) (* directIO , error ) {
433
- return newDirectIO (ctx , false )
434
- }
435
-
436
- func newDirectIOWithTerminal (ctx context.Context ) (* directIO , error ) {
437
- return newDirectIO (ctx , true )
438
- }
439
-
440
432
func newDirectIO (ctx context.Context , terminal bool ) (* directIO , error ) {
441
- fifos , err := cio .NewFIFOSetInDir ("" , "" , false )
433
+ fifos , err := cio .NewFIFOSetInDir ("" , "" , terminal )
442
434
if err != nil {
443
435
return nil , err
444
436
}
445
- f := cio .NewDirectIO
446
- if terminal {
447
- f = cio .NewDirectIOWithTerminal
448
- }
449
- dio , err := f (ctx , fifos )
437
+ dio , err := cio .NewDirectIO (ctx , fifos )
450
438
if err != nil {
451
439
return nil , err
452
440
}
@@ -508,7 +496,7 @@ func TestContainerUsername(t *testing.T) {
508
496
if err != nil {
509
497
t .Fatal (err )
510
498
}
511
- direct , err := newDirectIOStandard (ctx )
499
+ direct , err := newDirectIO (ctx , false )
512
500
if err != nil {
513
501
t .Fatal (err )
514
502
}
@@ -583,7 +571,7 @@ func testContainerUser(t *testing.T, userstr, expectedOutput string) {
583
571
if err != nil {
584
572
t .Fatal (err )
585
573
}
586
- direct , err := newDirectIOStandard (ctx )
574
+ direct , err := newDirectIO (ctx , false )
587
575
if err != nil {
588
576
t .Fatal (err )
589
577
}
@@ -668,7 +656,7 @@ func TestContainerAttachProcess(t *testing.T) {
668
656
expected := "hello" + newLine
669
657
670
658
// creating IO early for easy resource cleanup
671
- direct , err := newDirectIOStandard (ctx )
659
+ direct , err := newDirectIO (ctx , false )
672
660
if err != nil {
673
661
t .Fatal (err )
674
662
}
@@ -775,7 +763,7 @@ func TestContainerUserID(t *testing.T) {
775
763
if err != nil {
776
764
t .Fatal (err )
777
765
}
778
- direct , err := newDirectIOStandard (ctx )
766
+ direct , err := newDirectIO (ctx , false )
779
767
if err != nil {
780
768
t .Fatal (err )
781
769
}
0 commit comments