diff options
author | Michael Vogt <mvo@debian.org> | 2014-01-20 08:10:50 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-01-20 08:10:50 +0100 |
commit | 75c10df1533ede97e05fef3d1e2fc6a22fc4db00 (patch) | |
tree | 2df3cde9610b399fa236e021d92d6e97ae798fec /test/libapt/sourcelist_test.cc | |
parent | 7dd62ea93413a73b4ec394b16ff4e0367d226395 (diff) |
add support for multiple URIs in deb822 style sources.list
Diffstat (limited to 'test/libapt/sourcelist_test.cc')
-rw-r--r-- | test/libapt/sourcelist_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/libapt/sourcelist_test.cc b/test/libapt/sourcelist_test.cc index b9dd47207..3597b3d58 100644 --- a/test/libapt/sourcelist_test.cc +++ b/test/libapt/sourcelist_test.cc @@ -23,14 +23,14 @@ int main(int argc, char *argv[]) { const char contents[] = "" "Type: deb\n" - "URI: http://ftp.debian.org/debian\n" + "URIs: http://ftp.debian.org/debian\n" "Suites: stable\n" "Sections: main\n" "Description: short\n" " long description that can be very long\n" "\n" "Type: deb\n" - "URI: http://ftp.debian.org/debian\n" + "URIs: http://ftp.debian.org/debian\n" "Suite: unstable\n" "Section: main non-free\n" ; |