Author: rhuijben
Date: Wed Dec 16 11:09:36 2015
New Revision: 1720333
URL: http://svn.apache.org/viewvc?rev=1720333&view=rev
Log:
Following up on r1720220, make testcase expect new behavior.
* subversion/tests/libsvn_ra/ra-test.c
(commit_empty_last_change): Update expected result.
Modified:
subversion/trunk/subversion/tests/libsvn_ra/ra-test.c
Modified: subversion/trunk/subversion/tests/libsvn_ra/ra-test.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_ra/ra-test.c?rev=1720333&r1=1720332&r2=1720333&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_ra/ra-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_ra/ra-test.c Wed Dec 16 11:09:36
2015
@@ -1632,12 +1632,9 @@ commit_empty_last_change(const svn_test_
SVN_TEST_ASSERT(dirent != NULL);
SVN_TEST_STRING_ASSERT(dirent->last_author, "jrandom");
- /* BDB only updates last_changed on the repos_root when there is an
- actual change. Our other filesystems handle this differently */
- if (!opts->fs_type || !strcasecmp(opts->fs_type, "BDB"))
- SVN_TEST_INT_ASSERT(dirent->created_rev, 1);
- else
- SVN_TEST_INT_ASSERT(dirent->created_rev, 2+i);
+ /* BDB used to only updates last_changed on the repos_root when there
+ was an actual change. Now all filesystems behave in the same way */
+ SVN_TEST_INT_ASSERT(dirent->created_rev, 2+i);
}
svn_pool_clear(tmp_pool);