aboutsummaryrefslogtreecommitdiff
path: root/pkg/config
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/yaml_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/config/yaml_test.go b/pkg/config/yaml_test.go
index 09f721d..c8d6071 100644
--- a/pkg/config/yaml_test.go
+++ b/pkg/config/yaml_test.go
@@ -45,7 +45,7 @@ func TestBuildOptions(tst *testing.T) {
tst.Run(tt.name, func(tst *testing.T) {
out, unk := buildOptions(&tt.opts, tt.inp)
- if diff := cmp.Diff(out, tt.out); diff != "" {
+ if diff := cmp.Diff(tt.out, out); diff != "" {
tst.Error(diff)
}
@@ -197,7 +197,7 @@ func TestBuildFeeds(tst *testing.T) {
tst.Errorf("buildFeeds() error = %v, wantErr %v", err, tt.wantErr)
return
}
- if diff := cmp.Diff(feeds, tt.result); !tt.wantErr && diff != "" {
+ if diff := cmp.Diff(tt.result, feeds); !tt.wantErr && diff != "" {
tst.Error(diff)
}
})
@@ -373,7 +373,7 @@ feeds:
}
if err == nil {
- if diff := cmp.Diff(got, tt.config, eqNode); diff != "" {
+ if diff := cmp.Diff(tt.config, got, eqNode); diff != "" {
tst.Error(diff)
}
}
tle='2006-10-05 20:29:58 +0000'>2006-10-05Added first support for the masking stuff ... and hoping that it is going to ...necoro5-79/+135 2006-10-05Changed changelog / added config-filenecoro2-0/+10 2006-10-05Added preference windownecoro4-49/+155 2006-10-02Corrected comments, structure, bad algorithms etcnecoro4-176/+209 2006-10-02Corrected indention in commentnecoro1-8/+6 2006-10-010.3.3necoro1-0/+6 2006-10-01Implemented an internal db; removed unmerge-bugnecoro2-26/+43 2006-09-30Implemented some new backend functions which speed up the package-list-creati...necoro2-12/+37 2006-09-300.3.2 release; changed font in terminal; added new "masking"-dialognecoro3-11/+36 2006-09-29fixed bugsnecoro4-13/+23 2006-09-29Corrected setup.pynecoro1-1/+1