From 8e565c25606fe513064bbfff1843d765582b1047 Mon Sep 17 00:00:00 2001 From: Peter Lawrey Date: Mon, 26 May 2025 11:44:32 +0100 Subject: [PATCH] Replace dated placeholder with token --- src/test/java/eg/FooBarTee.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/test/java/eg/FooBarTee.java b/src/test/java/eg/FooBarTee.java index fc311ab..488c1b5 100644 --- a/src/test/java/eg/FooBarTee.java +++ b/src/test/java/eg/FooBarTee.java @@ -37,8 +37,9 @@ public FooBarTee(String name) { copy = new BarImpl(tee, 555); - // you should see the current date here after synchronisation. - foo = new Foo(bar, copy, "generated test Tue Aug 11 07:09:54 BST 2015", 5); + // ${generatedDate} + // Build scripts replace the token with the current date. + foo = new Foo(bar, copy, "generated test ${generatedDate}", 5); } public void start() {