diff options
| author | onur-ozkan <work@onurozkan.dev> | 2023-10-24 09:46:34 +0300 |
|---|---|---|
| committer | onur-ozkan <work@onurozkan.dev> | 2023-10-24 09:46:34 +0300 |
| commit | b99b93586fe949f87f20cc65b9f0f1ac738c529d (patch) | |
| tree | e030cdfa66e58873c33067195fc297ba705d7adc | |
| parent | e918db897df677d9bbda64d82ebbb8f1bc9e557f (diff) | |
| download | rust-b99b93586fe949f87f20cc65b9f0f1ac738c529d.tar.gz rust-b99b93586fe949f87f20cc65b9f0f1ac738c529d.zip | |
remove change-id assertion in bootstrap test
In the bootstrap test, the assertion of the change-id fails whenever we update the change-id next to a breaking change in build configurations. This commit removes the assertion, as it's not critical or useful to have. Signed-off-by: onur-ozkan <work@onurozkan.dev>
| -rw-r--r-- | src/bootstrap/bootstrap_test.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bootstrap/bootstrap_test.py b/src/bootstrap/bootstrap_test.py index 7f16cac7890..e6caabec4f6 100644 --- a/src/bootstrap/bootstrap_test.py +++ b/src/bootstrap/bootstrap_test.py @@ -103,7 +103,6 @@ class GenerateAndParseConfig(unittest.TestCase): """Test that we can serialize and deserialize a config.toml file""" def test_no_args(self): build = serialize_and_parse([]) - self.assertEqual(build.get_toml("change-id"), '116998') self.assertEqual(build.get_toml("profile"), 'dist') self.assertIsNone(build.get_toml("llvm.download-ci-llvm")) |
