From 66a253916ea35a1d73b6df4f5daea1164df289c4 Mon Sep 17 00:00:00 2001 From: Andrew Hynes Date: Sat, 12 Nov 2022 18:03:43 -0330 Subject: [PATCH] test: add more assertions --- pkg/integration/tests/stash/stash.go | 6 ++++-- .../stash/stash_including_untracked_files.go | 6 ++++-- .../stash/stash/expected/repo/.git_keep/ORIG_HEAD | 2 +- .../stash/stash/expected/repo/.git_keep/logs/HEAD | 4 ++-- .../repo/.git_keep/logs/refs/heads/master | 2 +- .../stash/expected/repo/.git_keep/logs/refs/stash | 2 +- .../62/27ee90e6cf6047b510f13dc6cc976e2dd372dd | Bin 122 -> 0 bytes .../9c/a683cf1ae1a37fb25ec24646acc0dc1db376e7 | 1 - .../b4/ba8c398d35c204cc9ae06e120c6f0801fd3f32 | 1 + .../c8/6eeda485a49ca608cb2617bb027be66cd92bc3 | Bin 0 -> 191 bytes .../e6/ed7d5c2198fa4791de9c66e8000da607eaf9a3 | Bin 0 -> 123 bytes .../f3/30ace8ec625fc87fe24138f3c4d65e7e8d9b8c | Bin 168 -> 0 bytes .../expected/repo/.git_keep/refs/heads/master | 2 +- .../stash/expected/repo/.git_keep/refs/stash | 2 +- .../expected/repo/.git_keep/ORIG_HEAD | 2 +- .../expected/repo/.git_keep/logs/HEAD | 4 ++-- .../repo/.git_keep/logs/refs/heads/master | 2 +- .../expected/repo/.git_keep/logs/refs/stash | 2 +- .../03/892119fb6b807d1c13c23f6baacdc4a170e694 | 1 + .../0f/e7bff1bede9ebb8de52517a4b75ad0f80be423 | Bin 0 -> 147 bytes .../36/4ac39500dfec09956626a513736d7602b4d64a | Bin 0 -> 123 bytes .../8d/147cc9d3f9cf40d1723b9099b98ffdb3727f8b | Bin 0 -> 167 bytes .../9d/49589525f6c37d177a53a57d82603a22de6076 | Bin 170 -> 0 bytes .../b8/eb39e727d4ac91542d57faa0bea0458c2d30e3 | 2 -- .../d2/5b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f | Bin 122 -> 0 bytes .../f8/528a899ebb020e575e007426baa4535207a214 | 2 -- .../expected/repo/.git_keep/refs/heads/master | 2 +- .../expected/repo/.git_keep/refs/stash | 2 +- 28 files changed, 24 insertions(+), 23 deletions(-) delete mode 100644 test/integration_new/stash/stash/expected/repo/.git_keep/objects/62/27ee90e6cf6047b510f13dc6cc976e2dd372dd delete mode 100644 test/integration_new/stash/stash/expected/repo/.git_keep/objects/9c/a683cf1ae1a37fb25ec24646acc0dc1db376e7 create mode 100644 test/integration_new/stash/stash/expected/repo/.git_keep/objects/b4/ba8c398d35c204cc9ae06e120c6f0801fd3f32 create mode 100644 test/integration_new/stash/stash/expected/repo/.git_keep/objects/c8/6eeda485a49ca608cb2617bb027be66cd92bc3 create mode 100644 test/integration_new/stash/stash/expected/repo/.git_keep/objects/e6/ed7d5c2198fa4791de9c66e8000da607eaf9a3 delete mode 100644 test/integration_new/stash/stash/expected/repo/.git_keep/objects/f3/30ace8ec625fc87fe24138f3c4d65e7e8d9b8c create mode 100644 test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/03/892119fb6b807d1c13c23f6baacdc4a170e694 create mode 100644 test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/0f/e7bff1bede9ebb8de52517a4b75ad0f80be423 create mode 100644 test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/36/4ac39500dfec09956626a513736d7602b4d64a create mode 100644 test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/8d/147cc9d3f9cf40d1723b9099b98ffdb3727f8b delete mode 100644 test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/9d/49589525f6c37d177a53a57d82603a22de6076 delete mode 100644 test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/b8/eb39e727d4ac91542d57faa0bea0458c2d30e3 delete mode 100644 test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/d2/5b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f delete mode 100644 test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/f8/528a899ebb020e575e007426baa4535207a214 diff --git a/pkg/integration/tests/stash/stash.go b/pkg/integration/tests/stash/stash.go index af247550b..00d666168 100644 --- a/pkg/integration/tests/stash/stash.go +++ b/pkg/integration/tests/stash/stash.go @@ -23,9 +23,11 @@ var Stash = NewIntegrationTest(NewIntegrationTestArgs{ assert.InMenu() input.PressKeys("a") - input.Type("stash name") - input.Confirm() + assert.InPrompt() + assert.MatchCurrentViewTitle(Equals("Stash changes")) + input.Type("my stashed file") + input.Confirm() assert.StashCount(1) assert.WorkingTreeFileCount(0) }, diff --git a/pkg/integration/tests/stash/stash_including_untracked_files.go b/pkg/integration/tests/stash/stash_including_untracked_files.go index 4ed7957ac..2f37f943c 100644 --- a/pkg/integration/tests/stash/stash_including_untracked_files.go +++ b/pkg/integration/tests/stash/stash_including_untracked_files.go @@ -24,9 +24,11 @@ var StashIncludingUntrackedFiles = NewIntegrationTest(NewIntegrationTestArgs{ assert.InMenu() input.PressKeys("U") - input.Type("stash name") - input.Confirm() + assert.InPrompt() + assert.MatchCurrentViewTitle(Equals("Stash changes")) + input.Type("my stashed file") + input.Confirm() assert.StashCount(1) assert.WorkingTreeFileCount(0) }, diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/ORIG_HEAD b/test/integration_new/stash/stash/expected/repo/.git_keep/ORIG_HEAD index bf1549f7e..9130d91a2 100644 --- a/test/integration_new/stash/stash/expected/repo/.git_keep/ORIG_HEAD +++ b/test/integration_new/stash/stash/expected/repo/.git_keep/ORIG_HEAD @@ -1 +1 @@ -6227ee90e6cf6047b510f13dc6cc976e2dd372dd +e6ed7d5c2198fa4791de9c66e8000da607eaf9a3 diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/logs/HEAD b/test/integration_new/stash/stash/expected/repo/.git_keep/logs/HEAD index 276b4169c..e89e8b09a 100644 --- a/test/integration_new/stash/stash/expected/repo/.git_keep/logs/HEAD +++ b/test/integration_new/stash/stash/expected/repo/.git_keep/logs/HEAD @@ -1,2 +1,2 @@ -0000000000000000000000000000000000000000 6227ee90e6cf6047b510f13dc6cc976e2dd372dd CI 1665104980 -0230 commit (initial): initial commit -6227ee90e6cf6047b510f13dc6cc976e2dd372dd 6227ee90e6cf6047b510f13dc6cc976e2dd372dd CI 1665104985 -0230 reset: moving to HEAD +0000000000000000000000000000000000000000 e6ed7d5c2198fa4791de9c66e8000da607eaf9a3 CI 1668288675 -0330 commit (initial): initial commit +e6ed7d5c2198fa4791de9c66e8000da607eaf9a3 e6ed7d5c2198fa4791de9c66e8000da607eaf9a3 CI 1668288676 -0330 reset: moving to HEAD diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/logs/refs/heads/master b/test/integration_new/stash/stash/expected/repo/.git_keep/logs/refs/heads/master index b4cda7b51..79820d14f 100644 --- a/test/integration_new/stash/stash/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration_new/stash/stash/expected/repo/.git_keep/logs/refs/heads/master @@ -1 +1 @@ -0000000000000000000000000000000000000000 6227ee90e6cf6047b510f13dc6cc976e2dd372dd CI 1665104980 -0230 commit (initial): initial commit +0000000000000000000000000000000000000000 e6ed7d5c2198fa4791de9c66e8000da607eaf9a3 CI 1668288675 -0330 commit (initial): initial commit diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/logs/refs/stash b/test/integration_new/stash/stash/expected/repo/.git_keep/logs/refs/stash index 080ed95ff..6933fca6b 100644 --- a/test/integration_new/stash/stash/expected/repo/.git_keep/logs/refs/stash +++ b/test/integration_new/stash/stash/expected/repo/.git_keep/logs/refs/stash @@ -1 +1 @@ -0000000000000000000000000000000000000000 9ca683cf1ae1a37fb25ec24646acc0dc1db376e7 CI 1665104985 -0230 On master: stash name +0000000000000000000000000000000000000000 c86eeda485a49ca608cb2617bb027be66cd92bc3 CI 1668288676 -0330 On master: my stashed file diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/objects/62/27ee90e6cf6047b510f13dc6cc976e2dd372dd b/test/integration_new/stash/stash/expected/repo/.git_keep/objects/62/27ee90e6cf6047b510f13dc6cc976e2dd372dd deleted file mode 100644 index 498500cc1d14256a3188020f659d74678d4ea527..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmV-=0EPc}0ga783d0}}0DJZo`+=0ztcyY^g`DyXH5)3#TEZ6k{08!YUWXZ`^wz3^ z_2Wf%5uhBLUkZ~enI*@BjN&P;Vd3aPShEO4B$Gb+>^n>|+@|><-_+ilTuX0vu*}{f c#eguN8_^u}n5g`zoBFC+(*|c}etoMixhRc2*Z=?k diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/objects/9c/a683cf1ae1a37fb25ec24646acc0dc1db376e7 b/test/integration_new/stash/stash/expected/repo/.git_keep/objects/9c/a683cf1ae1a37fb25ec24646acc0dc1db376e7 deleted file mode 100644 index 229d54ce7..000000000 --- a/test/integration_new/stash/stash/expected/repo/.git_keep/objects/9c/a683cf1ae1a37fb25ec24646acc0dc1db376e7 +++ /dev/null @@ -1 +0,0 @@ -xj1DSW$J2!\7HDwN|ոO3fBM"J&ַ$*j -: 1PfhER`RfѨ³ZbhjH\eAcM%ʒpzֿ![X3"9~ l?=^ZSUA HdrN/)ra,sX̃w];()ÁkDQ0(߷n|ߦ=@mc=~x7u}B߃^y?yNFY \ No newline at end of file diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/objects/c8/6eeda485a49ca608cb2617bb027be66cd92bc3 b/test/integration_new/stash/stash/expected/repo/.git_keep/objects/c8/6eeda485a49ca608cb2617bb027be66cd92bc3 new file mode 100644 index 0000000000000000000000000000000000000000..330924b9fac1677da05eecc3fe64cd61b396ea8a GIT binary patch literal 191 zcmV;w06_nE0gcZ+P6IIzhGFVG#asY1{u|o}A*58PIKy~mtVD{l(XNr;_H08>`{{X$ zPu4N66FlM5+{{3$QzVyiQ=t&lr(QF*Dw3k2wH$jZ3H$Qk&F&M7OtU8Ou9nU*AGuW_ zvVw@pgxR=P4u8JI#zjIc8jc8~NM%DZ=TWF*LDx0(;1~Xymvw{F8QxCk5BuivxY>)W t;~gAP@ug5Ec*YQLIo9LEw14vD^A3ae!@t7#fqn9RF@=7;*)In=PlT-fV=4du literal 0 HcmV?d00001 diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/objects/e6/ed7d5c2198fa4791de9c66e8000da607eaf9a3 b/test/integration_new/stash/stash/expected/repo/.git_keep/objects/e6/ed7d5c2198fa4791de9c66e8000da607eaf9a3 new file mode 100644 index 0000000000000000000000000000000000000000..e53b1e0685465dbedd3532d1a96f05ac7c570599 GIT binary patch literal 123 zcmV->0EGW|0ga7Y3c@fD0R7G>_5w(zhrbK6Eel5QL}fnh6SSuVI^i4wNvRMuXeyR!(*C9{-(Nbe9NsqVL%LB d#k+^AwpOc7`$YIpU6pr{k~a8t>I8(zFWt0#J0t)A literal 0 HcmV?d00001 diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/objects/f3/30ace8ec625fc87fe24138f3c4d65e7e8d9b8c b/test/integration_new/stash/stash/expected/repo/.git_keep/objects/f3/30ace8ec625fc87fe24138f3c4d65e7e8d9b8c deleted file mode 100644 index c63423382db7755e5c4753cc40cbd055cfdf4256..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 168 zcmV;Z09XHb0gaAL3c@fDg)vLZHH-w%QWBk?dxOVQ{3tmBvGdZHySvi(kOb{r5gV^7iCTShHZuF WpPf4Yte~u=6~DmuP<#Lq^hKmQJx_iB diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/refs/heads/master b/test/integration_new/stash/stash/expected/repo/.git_keep/refs/heads/master index bf1549f7e..9130d91a2 100644 --- a/test/integration_new/stash/stash/expected/repo/.git_keep/refs/heads/master +++ b/test/integration_new/stash/stash/expected/repo/.git_keep/refs/heads/master @@ -1 +1 @@ -6227ee90e6cf6047b510f13dc6cc976e2dd372dd +e6ed7d5c2198fa4791de9c66e8000da607eaf9a3 diff --git a/test/integration_new/stash/stash/expected/repo/.git_keep/refs/stash b/test/integration_new/stash/stash/expected/repo/.git_keep/refs/stash index c03c37c76..a976f263d 100644 --- a/test/integration_new/stash/stash/expected/repo/.git_keep/refs/stash +++ b/test/integration_new/stash/stash/expected/repo/.git_keep/refs/stash @@ -1 +1 @@ -9ca683cf1ae1a37fb25ec24646acc0dc1db376e7 +c86eeda485a49ca608cb2617bb027be66cd92bc3 diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/ORIG_HEAD b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/ORIG_HEAD index 4ee40e25d..8b6d164d8 100644 --- a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/ORIG_HEAD +++ b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/ORIG_HEAD @@ -1 +1 @@ -d25b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f +364ac39500dfec09956626a513736d7602b4d64a diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/HEAD b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/HEAD index e8dcfb6d1..1350d45f0 100644 --- a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/HEAD +++ b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/HEAD @@ -1,2 +1,2 @@ -0000000000000000000000000000000000000000 d25b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f CI 1665105632 -0230 commit (initial): initial commit -d25b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f d25b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f CI 1665105633 -0230 reset: moving to HEAD +0000000000000000000000000000000000000000 364ac39500dfec09956626a513736d7602b4d64a CI 1668288767 -0330 commit (initial): initial commit +364ac39500dfec09956626a513736d7602b4d64a 364ac39500dfec09956626a513736d7602b4d64a CI 1668288768 -0330 reset: moving to HEAD diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/refs/heads/master b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/refs/heads/master index df042a3dd..9653f3a4b 100644 --- a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/refs/heads/master @@ -1 +1 @@ -0000000000000000000000000000000000000000 d25b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f CI 1665105632 -0230 commit (initial): initial commit +0000000000000000000000000000000000000000 364ac39500dfec09956626a513736d7602b4d64a CI 1668288767 -0330 commit (initial): initial commit diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/refs/stash b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/refs/stash index 335d6aab8..9fa56fb7b 100644 --- a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/refs/stash +++ b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/logs/refs/stash @@ -1 +1 @@ -0000000000000000000000000000000000000000 b8eb39e727d4ac91542d57faa0bea0458c2d30e3 CI 1665105633 -0230 On master: stash name +0000000000000000000000000000000000000000 03892119fb6b807d1c13c23f6baacdc4a170e694 CI 1668288768 -0330 On master: my stashed file diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/03/892119fb6b807d1c13c23f6baacdc4a170e694 b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/03/892119fb6b807d1c13c23f6baacdc4a170e694 new file mode 100644 index 000000000..c933b47b3 --- /dev/null +++ b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/03/892119fb6b807d1c13c23f6baacdc4a170e694 @@ -0,0 +1 @@ +x=jA {@_2!\F# <^@rL>__Ǹ.U'%KK>W&F˽=6ÒZĴQ.%}H-84OS$uK 4C&45TC~z0lYEIQ4kK\s0ҾpǓ{?>U:>/b-^!FX:OO|h7~ݶr?]. \ No newline at end of file diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/0f/e7bff1bede9ebb8de52517a4b75ad0f80be423 b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/0f/e7bff1bede9ebb8de52517a4b75ad0f80be423 new file mode 100644 index 0000000000000000000000000000000000000000..aacb0bb13cbf27bd76012d487ee42ffd64469722 GIT binary patch literal 147 zcmV;E0Brww0ga7a3c@fDgniB__5w=t)6H5$gg*5c$+}{&X{1fT;~Ve-z74}S-*Cw} zRnSC-x{9>mJ!|Yq`p!Fp&S;0x#u$xbjD)slAJM6>*JoK_oZvD}H~ED8p5??PUqK_1 zA@WFY?5yonYuibcKXJ7$bq)NIJ3P`X80EGW|0ga783d0}}0DJZo`+*jt>qeoJKu&pvYc^DfwFC=!euaLZ*I|Z9wUpdo zaQ4y;5kU6Ft%=YiCgBh@X>rJ#Unv;xHx|L5QN>St)&u4R?(;Iq8OwW@TdL&&1Cj6Q dNF!XewOV!BCr$p;Ret4`;|{-0eF24uFX67lI{*Lx literal 0 HcmV?d00001 diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/8d/147cc9d3f9cf40d1723b9099b98ffdb3727f8b b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/8d/147cc9d3f9cf40d1723b9099b98ffdb3727f8b new file mode 100644 index 0000000000000000000000000000000000000000..84ee6636f96bcbcd23694592cedfb3f9e7b3740f GIT binary patch literal 167 zcmV;Y09gNc0gaAL3c@fDMqTF=a{(p4lSD*>u6m3#GsQsDmKveQw;=A_e!TDT@=|MQ zpf#S_#tcM^N@W`ca)dNm<@^xi=(LSG2B!w;Ij1PrwDH`)piS9CCnb%XWsD9{V{*!P zgXB@_!P3Eq^lr~(gRX~L*FShqb)EQAM5lVYQj-7x literal 0 HcmV?d00001 diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/9d/49589525f6c37d177a53a57d82603a22de6076 b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/9d/49589525f6c37d177a53a57d82603a22de6076 deleted file mode 100644 index 99fe3e9e508ead758850bf649230405ae62bedb9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmV;b09F5Z0gaA9YQr!PMZ4B1<^nC6u_Q|&ghEz1#z-@wg2*%%m`r=`i7gC0>s|2a2p5q-kC YKTncL_5c6? diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/b8/eb39e727d4ac91542d57faa0bea0458c2d30e3 b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/b8/eb39e727d4ac91542d57faa0bea0458c2d30e3 deleted file mode 100644 index eb6b19046..000000000 --- a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/b8/eb39e727d4ac91542d57faa0bea0458c2d30e3 +++ /dev/null @@ -1,2 +0,0 @@ -xMJ1`}\@#"¬f* -#;Ƿ7wx׶1nT-"F9R:S(T2cdMr锸R╠aŜC[N"TK1M዆¹0q'ŔpL Ň)K>Kj*3A°ϼm\a2Ҷ0FF{yz?!_1帹UY` \ No newline at end of file diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/d2/5b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/d2/5b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f deleted file mode 100644 index d412fdb6927f1dfd30d03f4a72a0f11807a62c58..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmV-=0EPc}0ga7Y3c@fD0R7G>_5#Z0u}cCXLce;9Y`VojW28jz_!hi?zrzeudTVun zC4U;bDg=p+mcqdmVU?7TQ7On87fvq5Ra8U5VDfuB`VP|!*J-}%C%4z8m(tq}EHhao c_72YIJeq?Zlc9g=ratSad4pePzI(tguaL(&(f|Me diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/f8/528a899ebb020e575e007426baa4535207a214 b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/f8/528a899ebb020e575e007426baa4535207a214 deleted file mode 100644 index 8cc3c848b..000000000 --- a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/objects/f8/528a899ebb020e575e007426baa4535207a214 +++ /dev/null @@ -1,2 +0,0 @@ -x] -0})J~7A}16o 6 |C@pjsޓBIo5Z,&RҖ04|B+ўuqajBtJ:4R)zOcm[ PW(q+%M[ : \ No newline at end of file diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/refs/heads/master b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/refs/heads/master index 4ee40e25d..8b6d164d8 100644 --- a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/refs/heads/master +++ b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/refs/heads/master @@ -1 +1 @@ -d25b2c8a3d20c1b1884fbf1c87aa2014dd99ed7f +364ac39500dfec09956626a513736d7602b4d64a diff --git a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/refs/stash b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/refs/stash index 3e0f2a550..3512c8618 100644 --- a/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/refs/stash +++ b/test/integration_new/stash/stash_including_untracked_files/expected/repo/.git_keep/refs/stash @@ -1 +1 @@ -b8eb39e727d4ac91542d57faa0bea0458c2d30e3 +03892119fb6b807d1c13c23f6baacdc4a170e694